:root {
  --navy: #07111c;
  --navy-2: #0b1b2a;
  --navy-3: #10283b;
  --paper: #f4f1ea;
  --paper-2: #ece7dd;
  --white: #ffffff;
  --ink: #101820;
  --muted: #65707a;
  --gold: #d6ae63;
  --gold-deep: #b98a3a;
  --cyan: #68d6f6;
  --line: rgba(16, 24, 32, .12);
  --line-light: rgba(255, 255, 255, .13);
  --shadow-sm: 0 16px 38px rgba(7, 17, 28, .09);
  --shadow-lg: 0 32px 90px rgba(2, 8, 14, .28);
  --radius-sm: 16px;
  --radius: 28px;
  --radius-lg: 40px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
::selection { color: var(--navy); background: var(--gold); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  border-radius: 10px;
  color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 44px), var(--container));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  background: rgba(7, 17, 28, .74);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-right: auto;
  color: var(--white);
  text-decoration: none;
}
.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(214, 174, 99, .6);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .24), 0 0 0 5px rgba(255, 255, 255, .025);
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.brand-copy small {
  margin-top: 7px;
  color: #b9c5cf;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .25em;
}
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  position: relative;
  color: #d7e0e7;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { right: 0; }
.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  color: var(--navy);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.header-cta:hover { transform: translateY(-2px); background: #e4c17e; box-shadow: 0 12px 28px rgba(214,174,99,.25); }
.menu-button { display: none; }

/* Shared */
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .21em;
}
.section { padding: 118px 0; }
.section h2,
.studio-section h2,
.contact-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -.045em;
}
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.header-cta:focus-visible,
.main-nav a:focus-visible,
.service-card a:focus-visible,
.text-link:focus-visible,
.studio-services a:focus-visible,
.floating-contact:focus-visible {
  outline: 3px solid rgba(104, 214, 246, .55);
  outline-offset: 4px;
}
.button-gold {
  color: var(--navy);
  background: linear-gradient(135deg, #e1c17e, var(--gold));
  box-shadow: 0 16px 36px rgba(214, 174, 99, .22);
}
.button-gold:hover { box-shadow: 0 20px 46px rgba(214, 174, 99, .32); }
.button-outline { color: var(--white); border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.03); }
.button-outline:hover { border-color: rgba(214,174,99,.72); background: rgba(255,255,255,.06); }

/* Hero */
.hero {
  position: relative;
  min-height: 900px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(4, 11, 18, .99) 0%, rgba(7, 17, 28, .97) 52%, rgba(6, 23, 36, .94) 100%),
    var(--navy);
  padding: 150px 0 112px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.hero::after {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  right: -360px;
  bottom: -410px;
  border: 1px solid rgba(104,214,246,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(104,214,246,.025), 0 0 0 160px rgba(214,174,99,.025);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(18px); pointer-events: none; }
.hero-orb-one { width: 360px; height: 360px; right: 8%; top: 18%; background: rgba(0, 173, 230, .15); }
.hero-orb-two { width: 260px; height: 260px; left: 40%; bottom: -120px; background: rgba(214, 174, 99, .12); }
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, .92fr);
  align-items: center;
  gap: 84px;
}
.hero-content { max-width: 760px; }
.hero .eyebrow { color: var(--gold); }
.hero h1 {
  margin: 0;
  max-width: 800px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6.2vw, 92px);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.055em;
}
.hero h1 span { display: block; margin-top: 12px; color: #bdefff; }
.hero-lead {
  max-width: 700px;
  margin: 29px 0 0;
  color: #c7d2db;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 650px;
  margin-top: 48px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-proof div { min-width: 0; padding-right: 18px; }
.hero-proof div + div { padding-left: 22px; border-left: 1px solid rgba(255,255,255,.12); }
.hero-proof strong,
.hero-proof span { display: block; }
.hero-proof strong { color: var(--white); font-size: 15px; }
.hero-proof span { margin-top: 3px; color: #8797a4; font-size: 12px; }
.hero-media { position: relative; min-height: 590px; display: grid; place-items: center; }
.logo-frame {
  position: relative;
  width: min(43vw, 510px);
  padding: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  border: 1px solid rgba(214,174,99,.28);
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}
.logo-frame::before {
  content: "";
  position: absolute;
  inset: -20px;
  z-index: -1;
  border: 1px solid rgba(104,214,246,.09);
  border-radius: 45px;
  transform: rotate(-3deg);
}
.logo-frame::after {
  content: "";
  position: absolute;
  inset: 18% 10%;
  z-index: -2;
  background: rgba(0, 181, 235, .24);
  filter: blur(70px);
}
.logo-frame img { width: 100%; border-radius: 24px; }
.hero-badge {
  position: absolute;
  right: -8px;
  bottom: 50px;
  width: min(320px, 72%);
  display: grid;
  padding: 21px 24px;
  color: var(--navy);
  background: rgba(244, 241, 234, .96);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(0,0,0,.32);
  backdrop-filter: blur(12px);
}
.hero-badge span { color: var(--gold-deep); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .16em; }
.hero-badge strong { margin-top: 5px; font-size: 18px; }
.scroll-indicator {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8395a3;
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  transform: translateX(-50%);
}
.scroll-indicator span { width: 26px; height: 1px; background: var(--gold); }

/* Signature strip */
.signature-strip { color: var(--white); background: #0d1d2a; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.signature-list {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
}
.signature-list span { flex: 0 0 auto; color: #c4d0d9; font-family: Georgia, "Times New Roman", serif; font-size: 17px; }
.signature-list i { width: 4px; height: 4px; flex: 0 0 4px; border-radius: 50%; background: var(--gold); }

/* Services */
.services { background: var(--paper); }
.section-intro {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}
.section-intro > p { margin: 0 0 8px; color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(32px, 4vw, 50px);
  background: rgba(255,255,255,.68);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -110px;
  top: -100px;
  border: 1px solid rgba(214,174,99,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(214,174,99,.025), 0 0 0 88px rgba(104,214,246,.02);
  transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(185,138,58,.38); box-shadow: var(--shadow-sm); }
.service-card:hover::before { transform: scale(1.12) rotate(8deg); }
.service-card-featured { color: var(--white); background: linear-gradient(145deg, #10283b, #07111c); border-color: rgba(255,255,255,.1); }
.service-card-featured::after {
  content: "";
  position: absolute;
  inset: auto -40px -100px 30%;
  height: 260px;
  background: radial-gradient(circle, rgba(0,178,235,.26), transparent 66%);
  filter: blur(14px);
}
.service-card-dark { color: var(--white); background: linear-gradient(145deg, #17212a, #0b1117); border-color: rgba(255,255,255,.1); }
.service-index {
  position: absolute;
  top: 27px;
  right: 30px;
  color: rgba(16,24,32,.28);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .16em;
}
.service-card-featured .service-index,
.service-card-dark .service-index { color: rgba(255,255,255,.35); }
.service-content { position: relative; z-index: 2; max-width: 520px; }
.service-kicker { margin: 0 0 13px; color: var(--gold-deep); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .18em; }
.service-card-featured .service-kicker,
.service-card-dark .service-kicker { color: var(--gold); }
.service-card h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 3vw, 44px); font-weight: 500; line-height: 1.08; letter-spacing: -.035em; }
.service-card p:not(.service-kicker) { margin: 20px 0 0; color: var(--muted); }
.service-card-featured p:not(.service-kicker),
.service-card-dark p:not(.service-kicker) { color: #b7c3cc; }
.service-card a { display: inline-flex; align-items: center; gap: 9px; margin-top: 28px; color: var(--gold-deep); font-size: 13px; font-weight: 850; text-decoration: none; }
.service-card-featured a,
.service-card-dark a { color: var(--gold); }
.service-card a span { transition: transform .2s ease; }
.service-card a:hover span { transform: translateX(4px); }

/* Studio */
.studio-section { padding: 118px 0; color: var(--white); background: var(--navy); }
.studio-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.studio-copy { position: sticky; top: 122px; }
.studio-copy .eyebrow { color: var(--gold); }
.studio-copy > p:not(.eyebrow) { margin: 25px 0 0; color: #b6c2cb; font-size: 17px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; color: var(--gold); font-size: 13px; font-weight: 850; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.studio-services { display: grid; }
.studio-services a {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 116px;
  padding: 20px 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.12);
  text-decoration: none;
  transition: padding-left .2s ease, border-color .2s ease;
}
.studio-services a:first-child { border-top: 1px solid rgba(255,255,255,.12); }
.studio-services a:hover { padding-left: 12px; border-color: rgba(214,174,99,.48); }
.studio-services a > span { color: var(--gold); font-size: 10px; font-weight: 850; letter-spacing: .16em; }
.studio-services div { display: grid; }
.studio-services strong { font-family: Georgia, "Times New Roman", serif; font-size: 23px; font-weight: 500; }
.studio-services small { margin-top: 4px; color: #7f919f; font-size: 12px; }
.studio-services b { color: var(--gold); font-size: 18px; font-weight: 400; transition: transform .2s ease; }
.studio-services a:hover b { transform: translate(3px, -3px); }

/* About */
.about-section { background: #fff; }
.about-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 22px; }
.about-card,
.quote-card { min-height: 540px; padding: clamp(38px, 5.2vw, 72px); border-radius: var(--radius-lg); }
.about-card { display: flex; flex-direction: column; justify-content: center; background: var(--paper); border: 1px solid var(--line); }
.about-lead { max-width: 800px; margin: 28px 0 0; color: var(--muted); font-size: clamp(18px, 1.8vw, 22px); line-height: 1.75; }
.credentials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.credentials span { padding: 10px 14px; color: #49545d; background: rgba(255,255,255,.68); border: 1px solid var(--line); border-radius: 999px; font-size: 11px; font-weight: 800; }
.quote-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(145deg, #0c2130, #06111b);
}
.quote-card::before { content:""; position:absolute; width:350px; height:350px; right:-120px; top:-140px; border-radius:50%; background:radial-gradient(circle, rgba(0,182,234,.22), transparent 68%); }
.quote-card > span { position: absolute; top: 42px; left: 48px; color: var(--gold); font: 64px/1 Georgia, serif; opacity: .8; }
.quote-card p { position: relative; z-index: 1; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(27px, 3vw, 42px); line-height: 1.24; }
.quote-card cite { position: relative; z-index: 1; margin-top: 28px; color: var(--gold); font-size: 12px; font-style: normal; font-weight: 850; text-transform: uppercase; letter-spacing: .16em; }

/* Areas */
.areas-section { background: var(--paper-2); }
.areas-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 90px; align-items: start; }
.areas-heading { position: sticky; top: 122px; }
.areas-heading > p:not(.eyebrow) { margin: 25px 0 0; color: var(--muted); font-size: 17px; }
.area-list { display: grid; }
.area-list article { padding: 30px 0; border-bottom: 1px solid var(--line); }
.area-list article:first-child { padding-top: 3px; }
.area-list h3 { margin: 0 0 11px; font-family: Georgia, "Times New Roman", serif; font-size: 27px; font-weight: 500; }
.area-list p { margin: 0; color: var(--muted); }

/* FAQ */
.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 86px; }
.faq-heading { position: sticky; top: 122px; align-self: start; }
.faq-heading > p:not(.eyebrow) { margin: 23px 0 0; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
  position: relative;
  padding: 27px 56px 27px 0;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 800;
}
summary::-webkit-details-marker { display: none; }
summary::after { content:"+"; position:absolute; right:5px; top:19px; color:var(--gold-deep); font-size:30px; font-weight:400; transition: transform .2s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { max-width: 680px; margin: -4px 58px 26px 0; color: var(--muted); }

/* Contact */
.contact-section { padding: 0 0 118px; background: var(--white); }
.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 70px;
  overflow: hidden;
  padding: clamp(42px, 6vw, 76px);
  color: var(--white);
  background: linear-gradient(135deg, #0d2637 0%, #07111c 58%, #081722 100%);
  border: 1px solid rgba(214,174,99,.28);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.contact-card::after { content:""; position:absolute; width:420px; height:420px; right:-160px; bottom:-250px; border-radius:50%; background:radial-gradient(circle, rgba(0,186,235,.25), transparent 68%); }
.contact-copy,
.contact-details { position: relative; z-index: 2; }
.contact-copy .eyebrow { color: var(--gold); }
.contact-copy > p:not(.eyebrow) { max-width: 680px; margin: 25px 0 0; color: #b6c3cc; font-size: 17px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.contact-details { display: grid; align-content: center; gap: 22px; padding-left: 46px; border-left: 1px solid rgba(255,255,255,.13); }
.contact-details div { display: grid; }
.contact-details span { color: var(--gold); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .16em; }
.contact-details strong,
.contact-details a { margin-top: 5px; color: var(--white); font-size: 15px; font-weight: 700; text-decoration: none; }
.contact-details a:hover { color: var(--cyan); }
.map-link { display: inline-flex; align-items: center; gap: 8px; width: fit-content; padding-top: 12px; color: var(--gold) !important; font-size: 13px !important; }

/* Footer */
.site-footer { color: #abb9c3; background: #040a0f; padding: 66px 0 34px; }
.footer-main { display: flex; align-items: center; justify-content: space-between; gap: 44px; }
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-brand img { width: 62px; height: 62px; object-fit: cover; border-radius: 50%; border: 1px solid rgba(214,174,99,.45); }
.footer-brand div { display: grid; }
.footer-brand strong { color: var(--white); font-size: 16px; }
.footer-brand span { margin-top: 5px; color: #71828f; font-size: 12px; }
.footer-main nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 24px; }
.footer-main nav a { color: #a6b4be; font-size: 12px; text-decoration: none; }
.footer-main nav a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 22px; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09); color: #64747f; font-size: 11px; }
.footer-bottom a { color: #81929f; text-decoration: none; }

.floating-contact {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  display: grid;
  min-width: 168px;
  padding: 13px 18px;
  color: var(--navy);
  background: rgba(229, 198, 137, .96);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 15px;
  box-shadow: 0 18px 45px rgba(0,0,0,.24);
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: transform .2s ease, box-shadow .2s ease;
}
.floating-contact:hover { transform: translateY(-3px); box-shadow: 0 24px 55px rgba(0,0,0,.3); }
.floating-contact span { font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .16em; }
.floating-contact strong { margin-top: 2px; font-size: 13px; }

/* Tablet */
@media (max-width: 1020px) {
  .main-nav { display: none; }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; gap: 58px; }
  .hero-content { max-width: 840px; }
  .hero-media { min-height: 520px; }
  .logo-frame { width: min(76vw, 520px); }
  .hero-badge { right: 12%; }
  .section-intro { grid-template-columns: 1fr; gap: 22px; }
  .studio-layout,
  .areas-layout,
  .faq-layout { grid-template-columns: 1fr; gap: 58px; }
  .studio-copy,
  .areas-heading,
  .faq-heading { position: static; }
  .about-layout { grid-template-columns: 1fr; }
  .about-card,
  .quote-card { min-height: 460px; }
  .contact-card { grid-template-columns: 1fr; gap: 46px; }
  .contact-details { padding-left: 0; padding-top: 36px; border-left: 0; border-top: 1px solid rgba(255,255,255,.13); }
}

/* Mobile nav */
@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 72px; gap: 14px; }
  .brand-logo { width: 46px; height: 46px; flex-basis: 46px; }
  .brand-copy strong { font-size: 12px; }
  .brand-copy small { font-size: 9px; }
  .header-cta { display: none; }
  .menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 0 12px;
    color: var(--white);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
  }
  .menu-button span:not(.sr-only) { width: 100%; height: 1px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    padding: 14px 20px 24px;
    background: rgba(7,17,28,.98);
    border-bottom: 1px solid rgba(255,255,255,.1);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .main-nav a::after { display: none; }

  .section { padding: 82px 0; }
  .section h2,
  .studio-section h2,
  .contact-section h2 { font-size: clamp(39px, 12vw, 54px); }
  .hero { padding: 118px 0 78px; }
  .hero h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero h1 span { margin-top: 8px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: 14px; margin-top: 38px; }
  .hero-proof div,
  .hero-proof div + div { padding: 0; border-left: 0; }
  .hero-proof div + div { padding-top: 13px; border-top: 1px solid rgba(255,255,255,.09); }
  .hero-media { min-height: 410px; }
  .logo-frame { width: min(92vw, 420px); padding: 9px; border-radius: 24px; }
  .logo-frame img { border-radius: 17px; }
  .hero-badge { right: 0; bottom: 15px; width: 78%; padding: 16px 18px; }
  .hero-badge strong { font-size: 16px; }
  .scroll-indicator { display: none; }
  .signature-list { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .signature-list::-webkit-scrollbar { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 390px; padding: 31px; }
  .studio-section { padding: 82px 0; }
  .studio-services a { grid-template-columns: 32px 1fr auto; gap: 12px; min-height: 106px; }
  .studio-services strong { font-size: 20px; }
  .about-card,
  .quote-card { min-height: auto; padding: 36px 28px; border-radius: 27px; }
  .about-card { min-height: 500px; }
  .quote-card { min-height: 410px; }
  .quote-card > span { top: 30px; left: 28px; }
  .areas-section { padding-top: 84px; }
  .contact-section { padding-bottom: 84px; }
  .contact-card { padding: 38px 28px; border-radius: 28px; }
  .contact-actions { display: grid; }
  .contact-actions .button { width: 100%; }
  .footer-main { align-items: flex-start; flex-direction: column; }
  .footer-main nav { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; }
  .floating-contact { right: 12px; bottom: 12px; min-width: auto; padding: 12px 15px; }
  .floating-contact span { display: none; }
}

@media (max-width: 390px) {
  .brand-copy { display: none; }
  .hero h1 { font-size: 45px; }
  .hero-media { min-height: 365px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 760px) {
  .floating-contact { display: none; }
}
