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

:root{
  --bg-1:#070707;
  --bg-2:#0c0c0d;
  --grid:rgba(255,255,255,.06);
  --muted:#b8b8b8;
  --accent:#d7ff00;

  /* Background image for hero (place file at assets/hero-bg.png) */
  --hero-bg:url('assets/hero-bg.png');

  /* Overlay strength (lower = image looks more like original) */
  --hero-overlay: 0.18;

  /* Shared desktop gutter to align navbar + hero text block */
  --gutter-desktop: clamp(24px, 6vw, 96px);

  /* Target max width for headline/subtitle on large screens */
  --hero-copy-max: 1360px;

  /* New: comfortable readable line length for the left copy */
  --hero-copy-ch: 22ch;
  --hero-max-width: clamp(1120px, 86vw, 1440px);
}

body{
  font-family:'Plus Jakarta Sans',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:#fff;
  background:
    radial-gradient(900px 520px at 18% 12%, #141414 0%, transparent 60%),
    radial-gradient(1000px 600px at 88% 70%, #121212 0%, transparent 60%),
    linear-gradient(180deg,var(--bg-2),var(--bg-1));
  overflow-x:hidden;
}

/* HERO */
.hero{
  min-height:100vh;
  position:relative;
  padding:clamp(112px, 12vh, 160px) var(--gutter-desktop) clamp(72px, 8vh, 112px);
  background-color: var(--bg-1);
  /* Use a CSS grid pattern so the portrait PNG isn't also used as the background. */
  background-image:
    linear-gradient(to right, var(--grid) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center;
  overflow:hidden;
  isolation:isolate;
}

/* Subtle vignette/overlay like the reference */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    radial-gradient(900px 520px at 18% 12%, rgba(255,255,255,.04) 0%, transparent 60%),
    radial-gradient(1000px 600px at 88% 70%, rgba(255,255,255,.03) 0%, transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55));
  pointer-events:none;
}

/* Inner grid aligns copy + portrait similar to the reference */
.hero-inner{
  position:relative;
  z-index:1;
  max-width:var(--hero-max-width);
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(260px,0.9fr);
  column-gap:clamp(32px,4vw,80px);
  align-items:center;
  padding-top:98px;
}

.hero-copy{
  /* Let copy breathe; constrain headline/subtitle individually */
  max-width: 72ch;
}

.hero-visual{
  display:flex;
  justify-content:flex-end;
  position:relative;
  /* create a bit of breathing room on the right for the flower */
  padding-right: clamp(0px, 2.2vw, 28px);
}

/* Decorative flower behind the portrait, anchored to the hero-visual block */
.hero-flower{
  position:absolute;
  /* peek a little more to the right */
  right: clamp(-66px, -3.8vw, -10px);
  top: clamp(132px, 13vh, 190px);
  width: clamp(220px, 24vw, 380px);
  height:auto;
  z-index: 0;
  pointer-events:none;
  user-select:none;
  opacity: .95;
}

.hero-photo-ring{
  position:relative;
  aspect-ratio:1/1;
  border-radius:50%;
  padding:0px;
  background:transparent;
  /* allow decorative elements to sit outside the ring */
  overflow: visible;
  z-index: 1;
  transform: translateX(clamp(-8px, -1.2vw, -18px));
}

/* Decorative white star near portrait (reference) */
.hero-white-star{
  position:absolute;
  top: clamp(-26px, -2.2vw, -10px);
  left: clamp(-26px, -2.2vw, -10px);
  width: clamp(40px, 4.2vw, 74px);
  height:auto;
  z-index: 3;
  pointer-events:none;
  user-select:none;
}

.hero-photo-ring::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  border:4px solid #fff;
}

.hero-photo{
  position:relative;
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
  object-position: 50% 30%;
  display:block;
}

/* NAV */
.navbar{
  position:absolute;
  top:36px;
  left:var(--gutter-desktop);
  right:var(--gutter-desktop);
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:44px;
  flex-wrap: wrap;
}

.logo{
  font-weight:600;
  font-size:36px;
  letter-spacing:-0.3px;
}

.logo span{
  color: var(--accent);
}

.nav-links{
  display:flex;
  gap:48px;
  margin-left:34px;
}

.nav-links a{
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  text-decoration-color: rgba(255,255,255,.55);
  color:rgba(255,255,255,.82);
  font-size:20px;
  opacity:1;
}
.nav-links a:hover{
  color:#fff;
  text-decoration-color: rgba(255,255,255,.85);
}

/* Mobile hamburger toggle (hidden on desktop) */
.nav-toggle{
  margin-left: auto;
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.28);
  color: #fff;
  cursor: pointer;
  place-items: center;
  /* remove blur so icon/button isn't blurred */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 10px 30px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.04);
}

.nav-toggle-lines{
  position: relative;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,.92);
  border-radius: 999px;
  display: inline-block;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,.92);
  border-radius: 999px;
  transition: transform 220ms ease, top 220ms ease, opacity 220ms ease;
}

.nav-toggle-lines::before{ top: -6px; }
.nav-toggle-lines::after{ top: 6px; }

/* Nav menu wrapper (desktop is inline via .nav-links flex) */
.nav-menu{ display: block; }

/* Backdrop for mobile menu */
.nav-backdrop{
  position: fixed;
  inset: 0;
  z-index: 8;
  background: rgba(0,0,0,.52);
  /* remove blur */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Scroll lock when mobile menu is open */
body.no-scroll{ overflow: hidden; }

/* Open state: animate hamburger into X */
.navbar[data-open="true"] .nav-toggle-lines{
  background: transparent;
}

.navbar[data-open="true"] .nav-toggle-lines::before{
  top: 0;
  transform: rotate(45deg);
}

.navbar[data-open="true"] .nav-toggle-lines::after{
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile menu settings */
@media (max-width: 1100px){
  /* keep existing rules below; only add hamburger+drawer behavior */
  .nav-toggle{
    display: grid;
  }

  /* Drawer panel (nav links move into this) */
  .nav-menu{
    position: fixed;
    top: 86px;
    left: 18px;
    right: 18px;
    z-index: 9;
    border-radius: 16px;
    padding: 14px;
    background: rgba(10,10,10,.92);
    box-shadow: 0 24px 60px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.10);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms cubic-bezier(.2,.9,.3,1), opacity 220ms ease;
  }

  /* show menu when open */
  .navbar[data-open="true"] .nav-menu{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Links: hidden by default on mobile; shown only when menu open */
  .nav-links{ display: none; }

  .navbar[data-open="true"] .nav-links{
    display: grid;
    gap: 8px;
    margin-left: 0;
  }

  /* Link styles inside drawer */
  .nav-links a{
    display: block;
    padding: 12px 12px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    color: rgba(255,255,255,.88);
    background: rgba(255,255,255,.02);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  }

  .nav-links a:hover{
    color: #fff;
    background: rgba(255,255,255,.06);
  }

  /* Make sure the opened drawer can receive clicks */
  .navbar[data-open="true"] .nav-menu{
    pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce){
  .nav-menu{ transition: none; }
  .nav-toggle-lines::before,
  .nav-toggle-lines::after{ transition: none; }
}

/* CONTENT */
.content{display:none;}

.left{max-width:72ch;}

.headline{
  font-family:'Playfair Display',serif;
  font-size:clamp(44px, 5.2vw, 96px);
  line-height:1.04;
  font-weight:400;
  letter-spacing:-1.6px;
  /* Screenshot headline has a fairly tight measure */
  max-width: 28ch;
}

.highlight{
  display:inline-block;
  background:var(--accent);
  color:#000;
  padding:10px 20px 12px;
  border-radius:0;
  font-weight:500;
  transform:translateY(-8px);
}

.subtitle{
  margin-top:26px;
  font-size:clamp(16px, 1.1vw + 10px, 22px);
  line-height:1.75;
  color:rgba(255,255,255,.72);
  font-weight:400;
  max-width: 72ch;
}

/* Hero CTA row (Download resume + spark) */
.hero-cta{
  margin-top: clamp(28px, 4.2vh, 44px);
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.btn-resume{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.78);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(16px, 1.05vw + 10px, 22px);
  letter-spacing: -0.2px;
  background: rgba(0,0,0,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 220ms cubic-bezier(.2,.9,.3,1), border-color 220ms ease, background-color 220ms ease;
}

.btn-resume:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.06);
}

.btn-resume:focus{ outline: none; }

.btn-resume:focus-visible{
  box-shadow:
    0 0 0 4px rgba(215,255,0,.16),
    0 18px 40px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(255,255,255,.06);
}

.hero-cta-spark{
  width: clamp(40px, 3.8vw, 56px);
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.45));
  transform: translateY(2px);
}

@media (max-width: 620px){
  .hero-cta{
    gap: 16px;
  }
  .btn-resume{
    padding: 16px 22px;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .btn-resume{ transition: none; }
}

/* decorative asterisk near top/right of portrait */
.asterisk{
  position:absolute;
  right: clamp(280px, 24vw, 520px);
  top: clamp(250px, 22vh, 340px);
  width: 52px;
  height: 52px;
  z-index:1;
  opacity:.95;
}

/* dashed arc stays bottom-left */
.arc{
  position:absolute;
  left:0;
  bottom:0;
  width:220px;
  height:140px;
  opacity:.35;
  z-index:1;
}

/* Small yellow flower (reference)
   Now placed under the subtitle in the left copy block */
.hero-flower-small{
  position: static;
  display:block;
  margin-top: 22px;
  width: clamp(44px, 3.6vw, 68px);
  height: auto;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  opacity: .98;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.22));
}

/* WORK EXPERIENCE (light section) */
.experience{
  position:relative;
  padding: clamp(80px, 10vh, 120px) var(--gutter-desktop);
  color:#101010;
  background-color: #fff;
  background-image:
    linear-gradient(to right, rgba(0,0,0,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center;
  overflow:hidden;
}

.experience-inner{
  position:relative;
  max-width:var(--hero-max-width);
  margin:0 auto;
  display:grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  column-gap: clamp(40px, 6vw, 120px);
  align-items:start;
}

.experience-copy{
  padding-top: 10px;
}

.experience-headline{
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.6px;
  font-size: clamp(32px, 3.6vw, 54px);
  line-height: 1.08;
  max-width: 20ch;
}

.experience-list{
  justify-self:end;
  width:min(520px, 100%);
  display:flex;
  flex-direction:column;
  gap: 18px;
  position:relative;
  z-index:2;
}

.exp-card{
  display:grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items:center;
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #1b1c1f 0%, #0a0b0d 100%);
  color:#fff;
  box-shadow:
    0 14px 34px rgba(0,0,0,.28),
    inset 0 0 0 1px rgba(255,255,255,.08),
    0 0 32px 0 #D7FC180D;
}

.exp-logo{
  width:52px;
  height:52px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  font-weight:800;
  letter-spacing:-0.6px;
  background: #0d0f13;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
  overflow:hidden;
}

.exp-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display:block;
  padding: 10px;
}

.exp-logo--z{ background:#f0613b; color:#fff; }
.exp-logo--rig{ background:#ffffff; color:#0c0c0d; font-weight:900; font-size:14px; }
.exp-logo--full{ background:#0c0c0d; color:#fff; font-size:12px; letter-spacing:.6px; }

.exp-top{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 14px;
}

.exp-role{
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.92);
}

.exp-dates{
  font-size: 12px;
  color: rgba(255,255,255,.72);
  white-space: nowrap;
}

.exp-meta{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.58);
}

/* decorative flight path + plane */
.experience-flight{
  position:absolute;
  left: -70px;
  bottom: -30px;
  width: clamp(280px, 26vw, 400px);
  height:auto;
  opacity: .9;
  z-index:1;
  pointer-events:none;
}

.experience-plane{
  position:absolute;
  left: 84px;
  bottom: 58px;
  width: 30px;
  height: 30px;
  z-index: 2;
  transform: rotate(-18deg);
  pointer-events:none;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
}

/* RECENT WORKS (dark section) */
.works{
  position: relative;
  padding: clamp(84px, 10vh, 128px) var(--gutter-desktop);
  color: #fff;
  background-color: #101010;
  background-image: none;
  background-size: auto, auto, 56px 56px, 56px 56px;
  background-position: center;
  overflow: hidden;
}

.works-inner{
  max-width: var(--hero-max-width);
  margin: 0 auto;
}

.works-header{
  display: flex;
  justify-content: center;
  margin-bottom: clamp(26px, 3.2vw, 38px);
}

.works-title{
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: -0.4px;
  font-size: clamp(28px, 2.8vw, 40px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.works-spark{
  display: none;
}

/* small flower icon next to "Recent Works" title */
.works-flower{
  display:inline-block;
  width:45px;
  height:auto;
  margin-left:0;
  margin-right:8px;
  vertical-align:middle;
  transform: translateY(-1px);
  pointer-events:none;
  user-select:none;
  order: -1;
}

.works-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(18px, 2.2vw, 26px);
  grid-auto-rows: minmax(260px, auto);
}

.work-card{
  border-radius: 20px;
  background: rgba(0,0,0,.32);
  box-shadow:
    0 18px 50px rgba(0,0,0,.50),
    inset 0 0 0 1px rgba(255,255,255,.10),
    0 0 32px 0 #D7FC180D;
  min-height: 260px;
  overflow: hidden;
  position: relative;
}

/* New: View case study CTA */
.btn-case{
  --btn-h-pad: 18px;
  --btn-v-pad: 10px;
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: var(--btn-v-pad) var(--btn-h-pad);
  background: rgba(0,0,0,.52);
  color: var(--accent);
  border: 1px solid rgba(215,255,0,.14);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0,0,0,.48), inset 0 0 0 1px rgba(255,255,255,.04);
  z-index: 6;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 240ms cubic-bezier(.2,.9,.3,1), box-shadow 180ms ease, opacity 160ms ease;
}

/* Add a small flower icon using existing SVG as background */
.btn-case::before{
  content: "";
  display:inline-block;
  width:18px;
  height:18px;
  background: url('assets/white-star.png') no-repeat center/contain;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.45));
  transform: translateY(0);
}

.btn-case:hover{
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,.6);
  opacity: 1;
}

.btn-case:focus{
  outline: none;
}

.btn-case:focus-visible{
  box-shadow: 0 0 0 4px rgba(215,255,0,.12), 0 18px 40px rgba(0,0,0,.6);
  transform: translateY(-2px);
}

/* Alternative placement inside simple stat cards: align left under the stats */
.work-card--stats .btn-case{
  right: 24px;
  bottom: 20px;
}

/* For media-heavy cards (image covers), raise the CTA to sit above the image corner */
.work-card--media .btn-case{
  right: 20px;
  bottom: 20px;
  background: linear-gradient(180deg, rgba(0,0,0,.46), rgba(0,0,0,.22));
}

/* Responsive: switch to flowing full-width button on small screens */
@media (max-width:760px){
  .btn-case{
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    justify-content: center;
    margin-top: 14px;
    font-size: 15px;
    transform:none;
    box-shadow: 0 10px 30px rgba(0,0,0,.38);
  }
  .work-card-inner{padding:18px}
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .btn-case{ transition: none; }
}

.work-card-inner{
  position: relative;
  height: 100%;
  padding: 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* decorative flower inside featured stats cards */
.work-flower{
  position:absolute;
  z-index:3;
  width:30px;
  height:auto;
  pointer-events:none;
  user-select:none;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.3));
}

/* add a subtle inner-grid like the screenshot (different from section grid) */
.work-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .2;
  pointer-events: none;
}

.work-card--light::before{
  background-image:
    linear-gradient(to right, rgba(0,0,0,.12) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,.12) 1px, transparent 1px);
  opacity: .2;
}

.work-chip{
  align-self: flex-start;
  background: var(--accent);
  color: #0b0b0c;
  font-weight: 600;
  font-size: 11px;
  padding: 5px 9px;
  border-radius: 999px;
  letter-spacing: .1px;
  margin-bottom: 10px;
}

.work-card-title{
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.3px;
  font-size: clamp(18px, 1.38vw, 22px);
  line-height: 1.18;
  max-width: 24ch;
}

.work-stats{
  margin-top: auto;
  padding-top: 16px;
  display: grid;
  gap: 14px;
}

.work-stat{
  padding-top: 12px;
}

.work-stat-value{
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.work-stat-label{
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255,255,255,.72);
}

.work-bullets{
  margin-top: auto;
  padding-top: 16px;
  list-style: none;
  display: grid;
  gap: 12px;
}

.work-bullets li{
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.6);
  font-size: 12px;
  letter-spacing: .08em;
}

.work-card--media{
  background: rgba(0,0,0,.22);
}

.work-card--media .work-card-inner{
  padding: 0;
}

.work-card--light{
  background: rgba(255,255,255,.95);
  color: #0c0c0d;
  box-shadow:
    0 18px 50px rgba(0,0,0,.40),
    inset 0 0 0 1px rgba(0,0,0,.10);
}

.work-card--light .work-card-inner{ padding: 0; }

.work-card--media.work-card--light .work-card-inner{
  padding: 0;
}

.work-card--media.work-card--light .work-spark--corner{
  left: 16px;
  top: 16px;
}

.work-spark--corner{
  position: absolute;
  left: 16px;
  top: 16px;
  width: 22px;
  height: 22px;
  background: url('assets/flower.svg') no-repeat center/contain;
  color: transparent;
  font-size: 0;
}

.work-media{
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.work-media--art{
  background-image: url('assets/art.png');
}

.work-media--wash{
  background-image: url('assets/wash-metrix.jpg');
}

.work-card--center{
  display: grid;
  place-items: center;
}

.work-card--center .work-card-inner{
  padding: 28px;
  display: grid;
  place-items: center;
}

.work-card--center .work-coming{
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: -0.6px;
}

.work-coming{
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 40px);
  letter-spacing: -0.6px;
  color: rgba(255,255,255,.88);
}

/* Responsive */
@media (max-width:1100px){
  .navbar{left:24px; right:24px}
  .nav-links{display:none}
  .hero{padding:120px 24px 80px;}
  .hero-inner{
    grid-template-columns:1fr;
    row-gap:48px;
    text-align:center;
    padding-top:72px;
  }
  .hero-copy{margin:0 auto; max-width: 72ch;}
  .hero-visual{justify-content:center; padding-right: 0;}
  .headline{font-size:clamp(40px, 6vw, 64px); max-width:24ch; margin:0 auto}
  .subtitle{font-size:18px; max-width:60ch; margin-left:auto; margin-right:auto}
  .asterisk{display:none;}
  .section{padding:80px 24px}
  .hero-white-star{
    top: clamp(-22px, -4vw, -10px);
    left: clamp(-18px, -4vw, -8px);
    width: clamp(36px, 7vw, 60px);
  }
  .hero-flower{
    right: clamp(-44px, -6vw, -8px);
    top: clamp(112px, 11vh, 170px);
    width: clamp(210px, 48vw, 340px);
  }
  .hero-flower-small{
    margin-left: auto;
    margin-right: auto;
    margin-top: 18px;
    width: clamp(42px, 6.5vw, 64px);
  }

  .experience{
    padding: 84px 24px;
  }

  .experience-inner{
    grid-template-columns: 1fr;
    row-gap: 34px;
  }

  .experience-headline{
    max-width: 26ch;
  }

  .experience-list{
    justify-self:center;
  }

  .experience-flight,
  .experience-plane{
    display:none;
  }

  .works{ padding: 84px 24px; }
  .works-grid{ gap: 18px; }
  /* slightly reduce decorative flowers on tablets */
  .works-flower{ width:22px; }
  .work-flower{ width:30px; }
}

@media (max-width:760px){
  .hero{padding:112px 18px 72px;}
  .hero{background-size: 44px 44px;}
  .hero-inner{row-gap:40px;}
  .headline{font-size:clamp(34px, 8vw, 44px); line-height:1.12; max-width:22ch}
  .subtitle{font-size:18px; margin-top:20px}
  .nav-links{display:none}
  .arc{opacity:.25; width:180px; height:112px;}
  .section{padding:64px 18px}
  .hero-white-star{
    top: -16px;
    left: -12px;
    width: 46px;
  }
  .hero-flower{
    right: -10px;
    top: 124px;
    width: 250px;
    opacity: .92;
  }
  .hero-flower-small{
    margin-top: 16px;
    width: 56px;
  }

  .experience{
    padding: 72px 18px;
    background-size: 44px 44px;
  }

  .experience-headline{
    font-size: clamp(26px, 6.2vw, 34px);
  }

  .exp-card{
    grid-template-columns: 52px 1fr;
    padding: 14px 14px;
  }

  .exp-logo{ width:48px; height:48px; }
  .exp-logo img{ padding: 9px; }

  .works{ padding: 72px 18px; background-size: auto, auto, 44px 44px, 44px 44px; }
  .works-grid{ grid-template-columns: 1fr; }
  .work-card{ min-height: 220px; }
  /* stack-friendly flower sizes */
  .work-flower{ width:26px; }
}

@media (max-width:420px){
  .hero{background-size: 40px 40px;}
  .hero-flower{
    right: -8px;
    top: 116px;
    width: 230px;
  }
  .hero-flower-small{
    margin-top: 14px;
    width: 52px;
  }

  .experience{
    background-size: 40px 40px;
  }

  .works{ background-size: auto, auto, 40px 40px, 40px 40px; }
  .work-card-inner{ padding: 18px; }
  /* hide one of the decorative flowers on very small screens if cramped */
}

@media (min-width:1600px){
  .headline{max-width: 30ch;}
  .subtitle{max-width: 78ch;}
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  background-color: #101010; /* Plain black */
  padding: 100px 0;
  overflow: hidden;
}

.testimonials-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/* Title */
.testimonials-title {
  text-align: center;
  color: #ffffff;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.title-icon {
  width: 28px;
  height: 28px;
}

/* Horizontal Scroll */
.testimonials-scroll {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

/* Hide Scrollbar */
.testimonials-scroll::-webkit-scrollbar {
  display: none;
}
.testimonials-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Card */
.testimonial-card {
  min-width: 750px;   /* reduced size */
  max-width: 800px;   /* prevents over stretching */
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
}

.testimonial-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

@media (max-width: 992px) {
  .testimonial-card {
    min-width: 600px;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 90%;
  }

  .testimonials-title {
      font-size: 26px;
    }
}

/* Responsive */
@media (max-width: 1200px) {
  .testimonial-card {
    min-width: 800px;
  }
}
/* ===== Footer Section ===== */

.footer-section {
  position: relative;
  background: #0a0a0a;
  color: #e6e6e6;
  padding: 150px 90px;
  overflow: hidden;
}

/* Grid background */
.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);

  background-size: 60px 60px;
  opacity: 0.6;
  pointer-events: none;
}

.footer-wrapper {
  position: relative;
  max-width: 1100px;
  z-index: 2;
}

/* Heading */
.footer-heading {
  font-family: "Times New Roman", serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 55px;
}

/* Let's Talk */
.footer-cta {
  display: inline-block;
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-size: 34px;
  margin-bottom: 70px;
  color: #e6e6e6;
  text-decoration: none;
}

/* Social Links */
.footer-socials {
  display: flex;
  gap: 60px;
}

.footer-socials a {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #d0d0d0;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.3s ease;
}

.footer-socials a:hover {
  opacity: 0.6;
}

/* ===== Responsive ===== */

@media (max-width: 1024px) {
  .footer-heading {
    font-size: 48px;
  }
}

@media (max-width: 768px) {

  .footer-section {
    padding: 100px 24px;
  }

  .footer-heading {
    font-size: 34px;
    line-height: 1.25;
  }

  .footer-cta {
    font-size: 24px;
  }

  .footer-socials {
    gap: 30px;
    flex-wrap: wrap;
  }
}

