/* SHINE EFFECT */
.shine-effect{
  position:absolute;
  pointer-events:none;
  overflow:hidden;
  z-index:999;
}

.shine-effect::before{
  content:"";
  position:absolute;
  top:0;
  left:-80%;
  width:35%;
  height:100%;
  background:linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.03) 30%, rgba(255,255,255,0.38) 50%, rgba(255,255,255,0.03) 70%, transparent 100%);
  transform:skewX(-25deg);
  animation:shineMove 0.6s ease forwards;
}

@keyframes shineMove{
  from{ left:-80%; }
  to{ left:130%; }
}

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* BASE */
html{
  scroll-behavior:smooth;
}

body{
  background:#080808;
  color:#ffffff;
  font-family:'Inter',sans-serif;
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

/* HEADER */
.site-header{
  width:fit-content;
  min-width:min(92%,550px);
  margin:0 auto;
  padding:12px 20px;

  display:flex;
  justify-content:center;
  align-items:center;
  gap:28px;

  position:fixed;
  top:18px;
  left:50%;
  z-index:100;

  transform:translateX(-50%);

  border:1px solid rgba(255,255,255,0.12);
  border-radius:999px;

  background:
    linear-gradient(
      135deg,
      rgba(18,18,18,0.88),
      rgba(8,8,8,0.68)
    );

  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);

  box-shadow:
    0 18px 60px rgba(0,0,0,0.38),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.brand{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  margin-right:50px;
}

.brand img{
  width:52px;
  height:52px;
  object-fit:contain;

  filter:drop-shadow(0 0 8px rgba(255,255,255,0.08));

  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.brand:hover img{
  transform:translateY(-1px);
  filter:brightness(1.08) drop-shadow(0 0 12px rgba(255,255,255,0.14));
}

.nav{
  display:flex;
  align-items:center;
  gap:22px;
}

.nav a{
  position:relative;

  color:#a8a8a8;

  font-size:0.74rem;
  font-weight:700;

  letter-spacing:0.1em;
  text-transform:uppercase;

  padding:8px 0;

  transition:0.25s ease;
}

.nav a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:2px;

  width:0;
  height:1px;

  background:#ffffff;

  transform:translateX(-50%);
  opacity:0;

  transition:0.3s ease;
}

.nav a:hover{
  color:#ffffff;
}

.nav a:hover::after{
  width:100%;
  opacity:1;
}

/* HERO */
.hero{
  min-height:100svh;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-top:0;

  padding:130px 20px 70px;

  position:relative;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;

  overflow:hidden;

  background:#080808;
}

.hero-bg::before{
  content:"";

  position:absolute;

  top:-25%;
  left:-15%;

  width:75%;
  height:75%;

  background:
    radial-gradient(
      circle,
      rgba(212,145,55,0.16),
      transparent 68%
    );

  filter:blur(90px);

  opacity:0.55;

  animation:smokeMoveOne 18s ease-in-out infinite alternate;

  pointer-events:none;
}

.hero-bg::after{
  content:"";

  position:absolute;

  bottom:-30%;
  right:-15%;

  width:80%;
  height:80%;

  background:
    radial-gradient(
      circle,
      rgba(255,220,150,0.12),
      transparent 70%
    );

  filter:blur(110px);

  opacity:0.42;

  animation:smokeMoveTwo 22s ease-in-out infinite alternate;

  pointer-events:none;
}

.hero-light{
  position:absolute;

  top:-20%;
  left:-18%;

  width:70%;
  height:120%;

  pointer-events:none;

  z-index:1;

  background:
    linear-gradient(
      135deg,
      rgba(255,235,180,0.16) 0%,
      rgba(255,210,120,0.08) 18%,
      rgba(255,180,80,0.03) 34%,
      transparent 58%
    );

  filter:blur(55px);

  transform:rotate(-12deg);

  opacity:0.7;

  mix-blend-mode:screen;

  animation:directionalLightMove 14s ease-in-out infinite alternate;
}

.hero::before{
  content:"";

  position:absolute;

  width:520px;
  height:520px;

  border:1px solid rgba(255,255,255,0.05);
  border-radius:50%;

  top:50%;
  left:50%;

  transform:translate(-50%,-50%);

  opacity:0.22;

  animation:circleFloatOne 10s ease-in-out infinite alternate;
}

.hero::after{
  content:"";

  position:absolute;

  width:760px;
  height:760px;

  border:1px solid rgba(255,255,255,0.03);
  border-radius:50%;

  top:50%;
  left:50%;

  transform:translate(-50%,-50%);

  opacity:0.12;

  animation:circleFloatTwo 13s ease-in-out infinite alternate;
}

.hero-inner{
  position:relative;
  z-index:5;

  width:min(100%,900px);

  text-align:center;

  animation:softPageReveal 0.9s ease both;
}

.hero-kicker{
  font-size:0.95rem;
  letter-spacing:0.34em;
  text-transform:uppercase;

  margin-bottom:18px;

  background:
    linear-gradient(
      90deg,
      #8a6427,
      #f4dfaa,
      #b8873a
    );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero h1{
  font-family:'Cormorant Garamond', serif;
  text-transform:uppercase;

  font-size:5em;
  font-weight:500;

  letter-spacing:0.01em;
  line-height:0.9;

  max-width:900px;

  margin:0 auto 28px;
  padding-bottom:0.14em;

  text-shadow:
    0 0 24px rgba(241,223,170,0.06);

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f1dfaa 45%,
      #8d7a54 100%
    );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-text{
  max-width:600px;

  margin:0 auto;

  color:rgba(255,255,255,0.78);

  font-size:1.20rem;
  font-weight:300;

  line-height:1.8;

  letter-spacing:0.015em;

  text-wrap:balance;

  text-shadow:
    0 0 18px rgba(255,255,255,0.03);
}

/* HERO TAGS */
.hero-tags{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;

  gap:14px;

  margin:36px auto;
}

.hero-tags span{
  position:relative;

  padding:15px 24px;

  border-radius:999px;

  border:1px solid rgba(212,175,55,0.45);

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.10),
      rgba(255,255,255,0.03)
    );

  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.32),
    0 0 18px rgba(212,175,55,0.08),
    inset 0 1px 0 rgba(255,255,255,0.08);

  color:#e9d7a2;

  font-size:0.78rem;
  font-weight:700;

  letter-spacing:0.12em;
  text-transform:uppercase;

  overflow:hidden;

  transition:0.35s ease;
}

.hero-tags span::before{
  content:"";

  position:absolute;

  inset:-1px;

  border-radius:999px;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255,215,120,0.9),
      transparent
    );

  transform:translateX(-140%);

  transition:0.7s ease;

  opacity:0.7;
}

.hero-tags span:hover::before{
  transform:translateX(140%);
}

.hero-tags span:hover{
  transform:translateY(-3px);

  border-color:rgba(255,215,120,0.75);

  box-shadow:
    0 18px 45px rgba(0,0,0,0.4),
    0 0 26px rgba(212,175,55,0.22),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

/* HERO SERVICES */
.hero-services{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;

  gap:12px;

  margin-top:-6px;
  margin-bottom:42px;
}

.hero-services span{
  position:relative;

  padding:13px 20px;

  border-radius:999px;

  border:1px solid rgba(255,255,255,0.16);

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.025)
    );

  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.28),
    0 0 18px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.06);

  color:#d8d8d8;

  font-size:0.74rem;
  font-weight:700;

  letter-spacing:0.12em;
  text-transform:uppercase;

  overflow:hidden;

  transition:0.35s ease;
}

.hero-services span::before{
  content:"";

  position:absolute;

  inset:-1px;

  border-radius:999px;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.5),
      transparent
    );

  transform:translateX(-140%);

  transition:0.7s ease;

  opacity:0.6;
}

.hero-services span:hover::before{
  transform:translateX(140%);
}

.hero-services span:hover{
  transform:translateY(-3px);

  border-color:rgba(255,255,255,0.26);

  box-shadow:
    0 18px 45px rgba(0,0,0,0.38),
    0 0 24px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

/* HERO LINKS */
.hero-links{
  display:flex;
  justify-content:center;
  align-items:center;

  gap:42px;

  margin-top:40px;
  margin-bottom:34px;
}

.hero-links a{
  position:relative;

  color:#f2f2f2;

  font-size:0.82rem;
  font-weight:700;

  letter-spacing:0.14em;
  text-transform:uppercase;

  padding:8px 0;

  transition:0.3s ease;
}

.hero-links a::after{
  content:"";

  position:absolute;

  left:50%;
  bottom:0;

  width:0;
  height:1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(233,215,162,0.95),
      transparent
    );

  transform:translateX(-50%);

  opacity:0;

  transition:0.35s ease;
}

.hero-links a:hover{
  color:#e9d7a2;

  transform:translateY(-2px);
}

.hero-links a:hover::after{
  width:100%;

  opacity:1;
}

/* SOCIALS */
.socials{
  display:flex;
  justify-content:center;
  align-items:center;

  gap:26px;

  margin-top:28px;
}

.socials a{
  width:34px;
  height:34px;

  display:flex;
  align-items:center;
  justify-content:center;
}

.socials svg{
  width:34px;
  height:34px;

  fill:#b5b5b5;

  transition:0.3s ease;
}

.facebook-icon{
  transform:translateY(-3px) scale(1.15);
  transition:0.3s ease;
}

.socials a:hover svg{
  fill:#ffffff;
  transform:translateY(-3px) scale(1.18);
}

.socials a:hover .facebook-icon{
  transform:translateY(-6px) scale(1.18);
}

/* HERO BOTTOM FADE */
.hero-fade{
  position:absolute;

  left:0;
  right:0;
  bottom:-1px;

  height:220px;

  background:
    linear-gradient(
      180deg,
      transparent,
      #080808 82%
    );

  pointer-events:none;

  z-index:3;
}

/* SHOWCASE */
.featured-work{
  position:relative;

  width:100%;

  margin:0 auto;

  padding:0 0 120px;

  overflow:hidden;

  animation:softPageReveal 0.9s ease both;
}

.featured-work::after{
  content:"";

  position:absolute;

  top:0;
  left:50%;

  transform:translateX(-50%);

  width:min(82vw,780px);
  height:1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(233,215,162,0.85),
      transparent
    );

  box-shadow:
    0 0 18px rgba(233,215,162,0.24);

  opacity:0.9;

  z-index:5;
}

.featured-work::before{
  content:"";

  position:absolute;

  left:50%;
  bottom:0;

  transform:translateX(-50%);

  width:min(92%,900px);
  height:500px;

  background:
    linear-gradient(
      to top,
      rgba(8,8,8,0.98) 0%,
      rgba(8,8,8,0.88) 42%,
      rgba(8,8,8,0.48) 92%,
      transparent 100%
    );

  pointer-events:none;

  z-index:1;
}

.showcase-fade-image{
  position:relative;

  width:min(92%,650px);
  height:300px;

  margin:0 auto;

  overflow:hidden;
}

.showcase-fade-image::after{
  content:"";

  position:absolute;
  inset:0;

  pointer-events:none;

  background:
    radial-gradient(
      ellipse at 50% 8%,
      rgba(255,230,170,0.22) 0%,
      rgba(233,215,162,0.10) 22%,
      rgba(212,145,55,0.04) 42%,
      transparent 68%
    ),
    radial-gradient(
      ellipse at 50% 115%,
      rgba(8,8,8,0.95),
      transparent 58%
    );

  mix-blend-mode:screen;

  filter:blur(8px);

  opacity:0.95;
}

.showcase-fade-image img{
  width:100%;
  height:100%;

  object-fit:cover;
  object-position:center 18%;

  display:block;

  filter:
    contrast(1.04)
    brightness(0.72)
    saturate(0.95);

  mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      rgba(0,0,0,0.25) 10%,
      black 22%,
      black 78%,
      rgba(0,0,0,0.25) 90%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      black 0%,
      black 58%,
      rgba(0,0,0,0.5) 78%,
      transparent 100%
    );

  mask-composite:intersect;

  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent 0%,
      rgba(0,0,0,0.25) 10%,
      black 22%,
      black 78%,
      rgba(0,0,0,0.25) 90%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      black 0%,
      black 58%,
      rgba(0,0,0,0.5) 78%,
      transparent 100%
    );

  -webkit-mask-composite:source-in;

  animation:showcaseBreath 17s ease-in-out infinite alternate;
}

@keyframes showcaseBreath{
  from{
    transform:scale(1);
  }

  to{
    transform:scale(1.065);
  }
}

.showcase-heading{
  position:relative;
  z-index:5;

  width:min(92%,900px);

  margin:-10px auto 0;

  text-align:center;
}

.showcase-heading p,
.section-heading p{
  margin-bottom:14px;

  font-size:0.78rem;
  letter-spacing:0.24em;
  text-transform:uppercase;

  background:
    linear-gradient(
      90deg,
      #8a6427,
      #f4dfaa,
      #b8873a
    );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  opacity:0.82;
}

.showcase-heading h2{
  max-width:none;

  margin:0 auto;

  text-align:center;

  font-family:'Cormorant Garamond', serif;
  text-transform:uppercase;

  font-size:clamp(3.5rem,8vw,7rem);
  font-weight:500;

  line-height:0.86;
  letter-spacing:0.02em;

  filter:drop-shadow(0 8px 40px rgba(0,0,0,0.55));

  text-shadow:
    0 18px 55px rgba(0,0,0,0.65),
    0 0 28px rgba(233,215,162,0.08);
}

.showcase-panel{
  position:relative !important;

  z-index:20;

  width:auto;

  margin:26px auto 0 !important;

  padding:0 !important;

  left:auto !important;
  right:auto !important;
  bottom:auto !important;

  transform:none !important;

  text-align:center;

  border:none !important;
  background:transparent !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;

  overflow:visible !important;
}

.showcase-panel::before,
.showcase-panel p,
.showcase-panel h3{
  display:none;
}

/* EDITORIAL LINK */
.editorial-link,
.showcase-panel .editorial-link{
  position:relative;
  z-index:25;

  display:inline-block;

  color:rgba(255,255,255,0.82);

  font-size:0.76rem;
  font-weight:700;

  letter-spacing:0.16em;
  text-transform:uppercase;

  padding:10px 0;

  transition:
    color 0.35s ease,
    letter-spacing 0.35s ease;
}

.editorial-link::after{
  content:"";

  position:absolute;

  left:50%;
  bottom:0;

  transform:translateX(-50%);

  width:42%;
  height:1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(233,215,162,0.9),
      transparent
    );

  opacity:0.55;

  transition:
    width 0.35s ease,
    opacity 0.35s ease,
    box-shadow 0.35s ease;
}

.editorial-link:hover{
  color:#e9d7a2;
}

.editorial-link:hover::after{
  width:100%;
  opacity:1;

  box-shadow:
    0 0 16px rgba(233,215,162,0.22);
}

/* PORTFOLIO */
.portfolio{
  width:min(92%,1120px);

  margin:0 auto;

  padding-bottom:80px;
}

.portfolio-page-hero{
  width:min(92%,980px);

  margin:0 auto;

  padding:110px 20px 70px;

  text-align:center;
}

.full-portfolio{
  padding-top:0;
}

.section-heading{
  text-align:center;
  margin-bottom:0;
}

.section-heading h2{
  font-size:clamp(1.8rem,4vw,3rem);
  font-weight:500;
  letter-spacing:-0.05em;

  background:linear-gradient(180deg, #ffffff, #9b9b9b);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  padding-bottom:0.08em;
}

/* GRID */
.grid{
  columns:3 260px;
  column-gap:18px;
}

.grid img{
  width:100%;

  margin-bottom:18px;

  border-radius:20px;

  display:block;
  break-inside:avoid;

  transition:0.3s ease;

  cursor:pointer;
}

.grid img:hover{
  transform:scale(1.02);
  opacity:0.96;
}

/* LIGHTBOX */
.lightbox{
  position:fixed;
  inset:0;

  background:rgba(0,0,0,0.86);

  display:flex;
  justify-content:center;
  align-items:center;

  opacity:0;
  pointer-events:none;

  z-index:9999;

  transition:0.3s ease;

  padding:24px;
}

.lightbox.active{
  opacity:1;
  pointer-events:auto;
}

.lightbox img{
  max-width:92vw;
  max-height:88vh;

  border-radius:18px;

  object-fit:contain;

  box-shadow:0 30px 100px rgba(0,0,0,0.65);
}

/* WEB DESIGN PAGE */
.web-page-hero{
  width:min(92%,1180px);

  overflow:hidden;

  margin:0 auto;

  min-height:calc(100vh - 100px);

  padding:70px 0 100px;

  display:grid;
  grid-template-columns:1.05fr 0.95fr;

  align-items:center;

  gap:60px;

  position:relative;
}

.web-page-hero::before{
  content:"";

  position:absolute;

  width:600px;
  height:600px;

  border-radius:50%;

  background:radial-gradient(circle, rgba(255,255,255,0.11), transparent 65%);

  top:50%;
  right:-220px;

  transform:translateY(-50%);

  pointer-events:none;
}

.web-copy{
  position:relative;
  z-index:2;
}

.web-kicker{
  color:#b7b7b7;

  font-size:0.78rem;
  letter-spacing:0.28em;
  text-transform:uppercase;

  margin-bottom:20px;
}

.web-copy h1{
  font-size:clamp(3rem,6vw,5.8rem);
  line-height:0.95;

  font-weight:800;
  letter-spacing:-0.08em;

  margin-bottom:28px;
}

.web-copy p{
  max-width:620px;

  color:#d1d1d1;

  font-size:1.1rem;
  line-height:1.85;
}

.web-buttons{
  display:flex;
  align-items:center;

  margin-top:34px;
}

.web-buttons .btn{
  min-width:auto;

  padding:14px 26px;
}

.web-preview-card{
  position:relative;
  z-index:2;

  border:1px solid rgba(255,255,255,0.12);
  border-radius:30px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.11),
      rgba(255,255,255,0.025)
    );

  box-shadow:
    0 30px 100px rgba(0,0,0,0.55),
    inset 0 0 30px rgba(255,255,255,0.035);

  overflow:hidden;

  backdrop-filter:blur(14px);
}

.browser-bar{
  height:48px;

  border-bottom:1px solid rgba(255,255,255,0.1);

  display:flex;
  align-items:center;

  gap:8px;

  padding:0 20px;
}

.browser-bar span{
  width:10px;
  height:10px;

  border-radius:50%;

  background:rgba(255,255,255,0.28);
}

.preview-content{
  padding:48px 38px 40px;

  text-align:left;
}

.preview-logo{
  width:70px;
  height:70px;

  border-radius:50%;

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.12);

  margin-bottom:28px;
}

.preview-content p{
  color:#9d9d9d;

  font-size:0.76rem;
  letter-spacing:0.22em;
  text-transform:uppercase;

  margin-bottom:12px;
}

.preview-content h2{
  font-size:clamp(2rem,4vw,3rem);
  line-height:1;

  letter-spacing:-0.06em;

  font-weight:700;

  margin-bottom:26px;
}

.preview-lines{
  display:grid;
  gap:10px;
  margin-bottom:30px;
}

.preview-lines span{
  height:10px;

  border-radius:999px;

  background:rgba(255,255,255,0.12);
}

.preview-lines span:nth-child(1){
  width:90%;
}

.preview-lines span:nth-child(2){
  width:72%;
}

.preview-lines span:nth-child(3){
  width:55%;
}

.preview-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:12px;
}

.preview-grid div{
  height:110px;

  border-radius:18px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.18),
      rgba(255,255,255,0.045)
    );

  border:1px solid rgba(255,255,255,0.08);
}

.web-services{
  width:min(92%,1120px);

  margin:0 auto;

  padding:40px 0 80px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:18px;
}

.service-card{
  padding:34px 28px;

  border-radius:26px;

  border:1px solid rgba(255,255,255,0.1);

  background:rgba(255,255,255,0.035);

  transition:0.3s ease;
}

.service-card:hover{
  transform:translateY(-4px);

  background:rgba(255,255,255,0.055);

  border-color:rgba(255,255,255,0.18);
}

.service-card span{
  display:block;

  color:#8d8d8d;

  font-size:0.78rem;
  letter-spacing:0.22em;

  margin-bottom:22px;
}

.service-card h3{
  font-size:1.35rem;

  font-weight:600;

  letter-spacing:-0.03em;

  margin-bottom:14px;
}

.service-card p{
  color:#bdbdbd;

  line-height:1.7;

  font-size:0.95rem;
}

/* CONTACT PAGE */
.contact-hero{
  min-height:70vh;

  display:flex;
  align-items:center;
  justify-content:center;

  position:relative;

  padding:80px 20px;

  overflow:hidden;
}

.contact-bg{
  position:absolute;
  inset:0;

  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.10), transparent 30%),
    radial-gradient(circle at 20% 70%, rgba(255,255,255,0.04), transparent 25%),
    radial-gradient(circle at 80% 75%, rgba(255,255,255,0.04), transparent 25%);
}

.contact-inner{
  position:relative;
  z-index:2;

  text-align:center;

  width:min(100%,900px);
}

.contact-cards{
  width:min(92%,1120px);

  margin:0 auto 100px;

  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:20px;
}

.contact-card{
  position:relative;

  padding:34px 30px;

  border-radius:30px;

  border:1px solid rgba(255,255,255,0.1);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.06),
      rgba(255,255,255,0.025)
    );

  overflow:hidden;

  transition:0.35s ease;
}

.contact-card:hover{
  transform:translateY(-6px);

  border-color:rgba(255,255,255,0.18);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.09),
      rgba(255,255,255,0.035)
    );
}

.contact-card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;

  margin-bottom:34px;
}

.contact-card-top span{
  font-size:0.78rem;
  letter-spacing:0.22em;
  text-transform:uppercase;

  color:#a8a8a8;
}

.contact-card-top svg{
  width:28px;
  height:28px;

  fill:#ffffff;
}

.contact-card h2{
  font-size:2rem;
  line-height:1;

  letter-spacing:-0.05em;

  margin-bottom:16px;
}

.contact-card p{
  color:#c4c4c4;

  line-height:1.8;

  margin-bottom:30px;
}

.contact-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:13px 18px;

  border-radius:999px;

  background:#ffffff;
  color:#080808;

  font-size:0.75rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

/* CONNECT CTA */
.booking-strip{
  position:relative;

  width:min(92%,760px);

  margin:70px auto 60px;

  padding:40px 26px 70px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  gap:24px;

  text-align:center;

  border:none;
  background:transparent;
  box-shadow:none;
  backdrop-filter:none;

  overflow:visible;

  animation:softPageReveal 0.9s ease both;
}

.booking-strip::before{
  content:"";

  position:absolute;

  left:50%;
  top:0;

  transform:translateX(-50%);

  width:min(90vw,720px);
  height:120px;

  background:
    radial-gradient(
      ellipse at center top,
      rgba(212,175,55,0.14) 0%,
      rgba(212,175,55,0.075) 28%,
      rgba(212,175,55,0.025) 52%,
      transparent 76%
    );

  pointer-events:none;

  z-index:-1;
}

.booking-strip h2{
  font-family:'Cormorant Garamond', serif;

  font-size:clamp(1rem,3vw,2.2rem);
  font-weight:500;

  line-height:0.95;
  letter-spacing:0.02em;

  text-transform:uppercase;

  margin-bottom:-4px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f1dfaa 48%,
      #8d7a54 100%
    );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  text-shadow:
    0 0 18px rgba(241,223,170,0.05);
}

.booking-strip p{
  max-width:520px;

  color:rgba(255,255,255,0.78);

  font-size:1.05rem;
  line-height:1.8;

  letter-spacing:0.02em;
}

.booking-strip a{
  position:relative;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:16px 34px;

  border-radius:999px;

  border:1px solid rgba(233,215,162,0.34);

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.10),
      rgba(255,255,255,0.03)
    );

  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

  font-size:0.78rem;
  font-weight:700;

  letter-spacing:0.16em;
  text-transform:uppercase;

  overflow:hidden;

  box-shadow:
    0 12px 40px rgba(0,0,0,0.35),
    0 0 20px rgba(212,175,55,0.08),
    inset 0 1px 0 rgba(255,255,255,0.08);

  background-image:
    linear-gradient(
      90deg,
      #8a6427,
      #f4dfaa,
      #b8873a
    );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    text-shadow 0.35s ease;
}

.booking-strip a::before{
  content:"";

  position:absolute;

  top:0;
  left:-120%;

  width:70%;
  height:100%;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.22),
      transparent
    );

  transform:skewX(-24deg);

  transition:0.8s ease;
}

.booking-strip a:hover{
  transform:translateY(-2px);

  border-color:rgba(233,215,162,0.6);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.45),
    0 0 30px rgba(212,175,55,0.16),
    inset 0 1px 0 rgba(255,255,255,0.12);

  text-shadow:
    0 0 18px rgba(233,215,162,0.22);
}

.booking-strip a:hover::before{
  left:140%;
}

/* FOOTER */
.footer{
  text-align:center;

  padding:50px 20px 60px;

  color:#777777;

  font-size:0.85rem;

  animation:softPageReveal 0.9s ease both;
}

.footer-logo{
  width:62px;

  opacity:0.5;

  margin-bottom:14px;

  transition:0.3s ease;
}

.footer-logo:hover{
  opacity:0.9;
  transform:translateY(-2px);
}

.footer p{
  opacity:0.6;

  letter-spacing:0.04em;
}

/* AMBIENT DEPTH */
body::before{
  content:"";

  position:fixed;

  inset:0;

  pointer-events:none;

  z-index:9999;

  background:
    radial-gradient(circle at 50% 10%, rgba(255,255,255,0.035), transparent 32%),
    radial-gradient(circle at 15% 80%, rgba(212,175,55,0.035), transparent 28%),
    radial-gradient(circle at 85% 75%, rgba(255,255,255,0.025), transparent 28%);

  mix-blend-mode:screen;
}

body::after{
  content:"";

  position:fixed;

  inset:0;

  pointer-events:none;

  z-index:9998;

  opacity:0.16;

  background-image:
    radial-gradient(rgba(255,255,255,0.22) 0.5px, transparent 0.5px);

  background-size:3px 3px;

  mix-blend-mode:overlay;
}

/* ANIMATIONS */
@keyframes heroAmbientMove{
  from{
    transform:scale(1) translateY(0);
    opacity:1;
  }

  to{
    transform:scale(1.08) translateY(-18px);
    opacity:0.86;
  }
}

@keyframes circleFloatOne{
  from{
    transform:translate(-50%,-50%) scale(1);
  }

  to{
    transform:translate(-51%,-53%) scale(1.04);
  }
}

@keyframes circleFloatTwo{
  from{
    transform:translate(-50%,-50%) scale(1);
  }

  to{
    transform:translate(-49%,-47%) scale(1.03);
  }
}

@keyframes smokeMoveOne{
  from{
    transform:translate(0,0) scale(1);
  }

  to{
    transform:translate(40px,20px) scale(1.12);
  }
}

@keyframes smokeMoveTwo{
  from{
    transform:translate(0,0) scale(1);
  }

  to{
    transform:translate(-35px,-25px) scale(1.16);
  }
}

@keyframes directionalLightMove{
  from{
    transform:rotate(-12deg) translateX(0) translateY(0) scale(1);
  }

  to{
    transform:rotate(-8deg) translateX(18px) translateY(12px) scale(1.04);
  }
}

@keyframes organicParticlesOne{
  from{
    transform:translate(0,0) scale(1);
  }

  to{
    transform:translate(-45px,55px) scale(1.12);
  }
}

@keyframes organicParticlesTwo{
  from{
    transform:translate(0,0) scale(1);
  }

  to{
    transform:translate(38px,-70px) scale(1.08);
  }
}

@keyframes softPageReveal{
  from{
    opacity:0;
    transform:translateY(18px);
    filter:blur(6px);
  }

  to{
    opacity:1;
    transform:translateY(0);
    filter:blur(0);
  }
}

/* HERO SPARKS */
.hero-sparks{
  position:absolute;
  inset:0;

  overflow:hidden;

  pointer-events:none;

  z-index:2;
}

.hero-sparks::before,
.hero-sparks::after{
  content:"";

  position:absolute;

  inset:-10%;

  background-repeat:no-repeat;

  mix-blend-mode:screen;

  filter:blur(1px);
}

.hero-sparks::before{
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,220,140,0.9) 0 3.5px, transparent 11px),
    radial-gradient(circle at 78% 24%, rgba(255,190,90,0.8) 0 5px, transparent 14px),
    radial-gradient(circle at 42% 62%, rgba(255,255,255,0.45) 0 3px, transparent 10px),
    radial-gradient(circle at 85% 72%, rgba(212,145,55,0.8) 0 5.5px, transparent 16px),
    radial-gradient(circle at 24% 82%, rgba(255,215,120,0.65) 0 4px, transparent 13px),
    radial-gradient(circle at 58% 38%, rgba(255,240,180,0.35) 0 3px, transparent 10px),
    radial-gradient(circle at 68% 88%, rgba(255,200,100,0.55) 0 5px, transparent 15px);

  opacity:0.2;

  animation:organicParticlesOne 10s ease-in-out infinite alternate;
}

.hero-sparks::after{
  background-image:
    radial-gradient(circle at 18% 42%, rgba(255,255,255,0.3) 0 2px, transparent 8px),
    radial-gradient(circle at 74% 58%, rgba(255,215,120,0.45) 0 2px, transparent 9px),
    radial-gradient(circle at 48% 14%, rgba(255,190,90,0.32) 0 2px, transparent 8px),
    radial-gradient(circle at 90% 34%, rgba(255,240,180,0.25) 0 2px, transparent 8px),
    radial-gradient(circle at 36% 74%, rgba(255,215,120,0.28) 0 2px, transparent 8px);

  opacity:0.45;

  animation:organicParticlesTwo 12s ease-in-out infinite alternate;
}

/* RESPONSIVE */
@media(max-width:900px){

  .web-page-hero{
    grid-template-columns:1fr;

    gap:40px;

    padding:50px 0 70px;
  }

  .web-copy{
    text-align:center;
  }

  .web-copy p{
    margin:0 auto;
  }

  .web-buttons{
    justify-content:center;
  }

  .service-grid{
    grid-template-columns:1fr;
  }

  .contact-cards{
    grid-template-columns:1fr;
  }
}

@media(max-width:850px){

  .site-header{
    width:min(94%,1180px);

    max-width:94%;

    padding:12px 16px;

    top:12px;

    overflow-x:auto;
  }

  .brand{
    margin-right:18px;
  }

  .brand img{
    width:44px;
    height:44px;
  }

  .nav{
    gap:16px;
  }

  .nav a{
    font-size:0.68rem;
    white-space:nowrap;
  }

  .hero{
    min-height:auto;
    padding:150px 20px 70px;
    overflow:hidden;
  }

  .hero-inner{
    max-width:100%;
    padding:0 16px;
  }

  .hero h1{
    font-size:clamp(2rem,9vw,3.1rem) !important;
    line-height:0.98 !important;
    max-width:100% !important;
    letter-spacing:0 !important;
    padding-left:0 !important;
    padding-right:0 !important;
  }

  .socials{
    margin-bottom:0 !important;
  }

  .booking-strip{
    flex-direction:column;
    text-align:center;

    border-top:1px solid rgba(255,255,255,0.06);

    background:
      linear-gradient(
        to bottom,
        rgba(255,255,255,0.015),
        transparent 30%
      );
  }

  .booking-strip::after{
    content:"";

    position:absolute;

    top:0;
    left:50%;

    transform:translateX(-50%);

    width:min(78vw,680px);
    height:1px;

    background:
      linear-gradient(
        90deg,
        transparent,
        rgba(233,215,162,0.45),
        transparent
      );

    box-shadow:
      0 0 18px rgba(233,215,162,0.12);

    opacity:0.7;
  }

  .grid{
    columns:2 180px;
  }
}

@media(max-width:520px){

  .site-header{
    border-radius:24px;
  }

  .brand img{
    width:40px;
    height:40px;
  }

  .nav{
    gap:14px;
  }

  .grid{
    columns:1;
  }

  .hero-tags{
    gap:10px;
  }

  .hero-tags span{
    font-size:0.7rem;
  }

  .web-copy h1{
    font-size:clamp(2.7rem,13vw,4.2rem);
  }

  .preview-content{
    padding:38px 26px 30px;
  }

  .preview-grid div{
    height:80px;
  }
}