@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Montserrat:wght@300;400;500;600;700;800&display=swap");

:root {
  --ink: #0a0a0a;
  --paper: #f5f3ef;
  --warm-white: #fffdf9;
  --muted: #a9998b;
  --brand-brown: #8b6549;
  --brand-brown-soft: #b69a83;
  --line: rgba(255, 255, 255, 0.18);
  --dark-line: rgba(10, 10, 10, 0.16);
  --background: var(--paper);
  --foreground: var(--ink);
  --card: var(--warm-white);
  --card-foreground: var(--ink);
  --popover: var(--warm-white);
  --popover-foreground: var(--ink);
  --primary: var(--ink);
  --primary-foreground: var(--paper);
  --secondary: #e6dfd8;
  --secondary-foreground: var(--ink);
  --muted-foreground: #726e67;
  --accent: var(--brand-brown);
  --accent-foreground: var(--ink);
  --border: var(--dark-line);
  --input: var(--dark-line);
  --ring: #777168;
  --radius: 0;
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--secondary);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);
  --font-sans: "Montserrat", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--brand-brown);
  color: #fff;
}

.sonny-site {
  min-height: 100vh;
  overflow: clip;
  background: var(--ink);
}

.top-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 86px;
  display: grid;
  grid-template-columns: minmax(155px, 0.75fr) minmax(520px, 2.3fr) minmax(150px, 0.75fr);
  align-items: center;
  gap: 24px;
  padding: 0 42px;
  color: #fff;
  background: rgba(8, 8, 8, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.brand-link {
  width: 128px;
  height: 68px;
  display: flex;
  align-items: center;
}

.brand-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.25vw, 42px);
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 250ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.top-inquire {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 250ms ease, color 250ms ease;
}

.top-inquire:hover {
  background: #fff;
  color: #111;
}

.mobile-menu-button {
  display: none;
  justify-self: end;
  border: 0;
  padding: 8px;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  color: #fff;
  background: #090909;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 350ms ease, transform 350ms ease, visibility 350ms;
}

.mobile-drawer.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-drawer > button {
  position: absolute;
  top: 28px;
  right: 28px;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.mobile-drawer nav {
  display: flex;
  flex-direction: column;
}

.mobile-drawer nav a {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Cormorant Garamond", Didot, "Times New Roman", serif;
  font-size: clamp(35px, 10vw, 58px);
  line-height: 1.02;
}

.mobile-drawer nav span {
  width: 20px;
  color: #777;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
}

.mobile-drawer > p {
  margin-top: 36px;
  color: #888;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-main {
  padding-top: 86px;
}

.light-page,
.light-section {
  color: var(--ink);
  background: var(--paper);
}

.dark-page,
.dark-section {
  color: #f5f2eb;
  background: var(--ink);
}

.page-section {
  padding: clamp(95px, 11vw, 175px) clamp(28px, 6vw, 105px);
}

.eyebrow,
.section-index {
  margin: 0;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  color: currentColor;
  opacity: 0.62;
}

.section-index {
  color: #77716a;
}

.animated-title {
  max-width: 1160px;
  margin: 0;
  font-family: "Cormorant Garamond", Didot, "Times New Roman", serif;
  font-size: clamp(68px, 10.5vw, 174px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.07em;
}

.title-word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(115%);
  animation: title-rise 950ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--delay) forwards;
}

@keyframes title-rise {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 900ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.action-link {
  width: fit-content;
  min-width: 198px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 16px 14px;
  border: 1px solid rgba(10, 10, 10, 0.46);
  color: #111;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 250ms ease, color 250ms ease, border 250ms ease;
}

.action-link:hover {
  border-color: #111;
  color: #fff;
  background: #111;
}

.action-link-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.action-link-light:hover {
  border-color: #fff;
  color: #111;
  background: #fff;
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-link-light {
  color: #fff;
}

.home-hero {
  position: relative;
  min-height: calc(100svh - 86px);
  overflow: hidden;
  color: #fff;
  background: #111;
}

.home-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  animation: hero-scale 1500ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes hero-scale {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1); }
}

.home-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0.32) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, transparent 48%);
}

.hero-brand-mark {
  position: absolute;
  top: clamp(28px, 4vw, 64px);
  right: clamp(28px, 5vw, 88px);
  width: clamp(122px, 12vw, 190px);
  height: 120px;
  object-fit: contain;
  opacity: 0.9;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 5.5vw, 95px);
  bottom: clamp(58px, 8vw, 130px);
  max-width: 1040px;
}

.hero-copy .animated-title {
  max-width: 990px;
  margin-top: 20px;
  font-size: clamp(64px, 9.4vw, 154px);
  text-wrap: balance;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.hero-intro {
  max-width: 500px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 13px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 28px;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4vw, 65px);
  bottom: 36px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.statement-section {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(150px, 0.3fr) minmax(0, 1.7fr);
  gap: 7vw;
}

.display-statement {
  margin: 0;
  font-family: "Cormorant Garamond", Didot, "Times New Roman", serif;
  font-size: clamp(52px, 7.2vw, 118px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.display-statement em,
.home-cta h2 em {
  font-weight: 400;
  color: #79736c;
}

.statement-meta {
  max-width: 670px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 58px;
  margin: 58px 0 0 auto;
}

.statement-meta > p {
  margin: 0;
  color: #55514c;
  font-size: 13px;
  line-height: 1.75;
}

.selected-work-section {
  padding-right: 0;
  padding-left: 0;
  overflow: hidden;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 0 clamp(28px, 6vw, 105px) 70px;
}

.section-heading-row h2,
.home-cta h2,
.review-promise h2,
.team-section h2,
.product-copy h2,
.future-product h2,
.form-heading h2 {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", Didot, "Times New Roman", serif;
  font-size: clamp(54px, 7.4vw, 118px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 16px;
  padding: 0 8px;
  animation: marquee-left 48s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}

.marquee-card {
  width: clamp(250px, 28vw, 485px);
  height: clamp(320px, 35vw, 605px);
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #181818;
}

.marquee-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.marquee-card:hover img {
  transform: scale(1.035);
}

.services-section {
  display: grid;
  grid-template-columns: minmax(150px, 0.3fr) minmax(0, 1.7fr);
  gap: 7vw;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--dark-line);
}

.service-grid article {
  min-height: 420px;
  padding: 36px 42px 30px 0;
  border-bottom: 1px solid var(--dark-line);
}

.service-grid article + article {
  padding-left: 42px;
  border-left: 1px solid var(--dark-line);
}

.service-grid span {
  color: #77716a;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-grid h3 {
  margin: 115px 0 26px;
  font-family: "Cormorant Garamond", Didot, "Times New Roman", serif;
  font-size: clamp(34px, 3.6vw, 60px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-grid p {
  max-width: 420px;
  margin: 0;
  color: #65605a;
  font-size: 12px;
  line-height: 1.7;
}

.home-cta {
  min-height: 690px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 110px 28px;
  text-align: center;
}

.home-cta h2 {
  font-size: clamp(74px, 11vw, 180px);
}

.home-cta .action-link {
  margin-top: 55px;
}

.page-intro {
  min-height: 590px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(90px, 10vw, 150px) clamp(28px, 6vw, 105px) clamp(75px, 8vw, 120px);
}

.page-intro .animated-title {
  margin-top: 28px;
}

.intro-copy {
  max-width: 550px;
  margin: 36px 0 0 auto;
  color: currentColor;
  font-size: 13px;
  line-height: 1.75;
  opacity: 0.62;
}

.portfolio-tabs {
  gap: 0 !important;
  color: #fff;
  background: #0a0a0a;
}

.portfolio-tabs-list {
  position: sticky;
  top: 86px;
  z-index: 10;
  width: 100% !important;
  height: 72px !important;
  display: flex !important;
  justify-content: flex-start !important;
  gap: 36px !important;
  padding: 0 clamp(28px, 6vw, 105px) !important;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.55) !important;
  background: rgba(10, 10, 10, 0.94) !important;
  backdrop-filter: blur(12px);
}

.portfolio-tabs-list button {
  flex: 0 0 auto !important;
  height: 72px !important;
  padding: 0 !important;
  color: inherit !important;
  font-size: 10px !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portfolio-tabs-list button[data-state="active"] {
  color: #fff !important;
}

.portfolio-tabs-list button::after {
  bottom: 0 !important;
  background: #fff !important;
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(48px, 7.5vw);
  grid-auto-flow: dense;
  gap: 12px;
  padding: 12px;
}

.gallery-tile {
  position: relative;
  grid-column: span 4;
  grid-row: span 5;
  margin: 0;
  overflow: hidden;
  background: #171717;
}

.gallery-tile.wide {
  grid-column: span 8;
  grid-row: span 5;
}

.gallery-tile.tall {
  grid-column: span 4;
  grid-row: span 7;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1100ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 600ms ease;
}

.gallery-tile:hover img {
  transform: scale(1.035);
  filter: brightness(0.82);
}

.gallery-tile figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.gallery-end-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 85px clamp(28px, 6vw, 105px) 125px;
}

.gallery-end-cta p {
  margin: 0;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(44px, 5vw, 78px);
}

.film-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px 12px 120px;
}

.film-card {
  background: #131313;
}

.film-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.film-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.film-card > div:last-child {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
}

.film-card span,
.product-visual > span,
.future-product > span {
  color: #777;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.film-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: 34px;
  font-weight: 400;
}

.film-profile-link {
  grid-column: 1 / -1;
  min-height: 160px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(30px, 4vw, 56px);
  transition: background 250ms ease, color 250ms ease;
}

.film-profile-link:hover {
  color: #111;
  background: #fff;
}

.reviews-intro,
.journal-intro {
  color: #111;
  background: var(--paper);
}

.featured-review {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(45px, 8vw, 130px);
  align-items: center;
  padding: 0 clamp(28px, 6vw, 105px) clamp(110px, 12vw, 180px);
}

.featured-review figure {
  margin: 0;
}

.featured-review figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.featured-review figcaption,
.about-portrait figcaption {
  margin-top: 12px;
  color: #746f68;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.review-stars {
  display: flex;
  gap: 4px;
  color: #111;
}

.featured-review blockquote {
  margin: 42px 0;
  font-family: "Cormorant Garamond", Didot, "Times New Roman", serif;
  font-size: clamp(39px, 4.7vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.review-author {
  margin: 0 0 34px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.review-author span {
  color: #777;
}

.review-promise {
  min-height: 650px;
  display: grid;
  grid-template-columns: 0.3fr 1fr 0.48fr;
  gap: 6vw;
  align-items: end;
  padding: 115px clamp(28px, 6vw, 105px);
}

.review-promise h2 {
  margin: 0;
}

.review-promise > p:not(.section-index),
.team-section > div:last-child > p {
  margin: 0 0 36px;
  color: #9e9a93;
  font-size: 12px;
  line-height: 1.8;
}

.about-hero {
  min-height: 790px;
  display: grid;
  grid-template-columns: 1.15fr 0.7fr;
  gap: 8vw;
  align-items: end;
  padding: 105px clamp(28px, 6vw, 105px) 80px;
}

.about-title {
  align-self: center;
}

.about-title .animated-title {
  margin-top: 28px;
  font-size: clamp(72px, 9vw, 148px);
}

.about-portrait {
  margin: 0;
}

.about-portrait img {
  width: 100%;
  max-height: 590px;
  object-fit: cover;
}

.about-copy {
  display: grid;
  grid-template-columns: 0.3fr 1.7fr;
  gap: 7vw;
  border-top: 1px solid var(--dark-line);
}

.about-prose .lead,
.article-body .lead {
  margin: 0 0 70px;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.prose-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}

.prose-columns p {
  margin: 0;
  color: #57534e;
  font-size: 13px;
  line-height: 1.85;
}

.team-section {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.25fr 0.55fr;
  gap: 10vw;
  align-items: end;
  padding: 110px clamp(28px, 6vw, 105px);
}

.shop-intro {
  min-height: 550px;
}

.product-feature {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 760px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #fff;
  background: #0a0a0a;
}

.product-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82);
  transition: transform 1200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-visual:hover img {
  transform: scale(1.03);
}

.product-visual > span {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: #fff;
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(45px, 6vw, 105px);
}

.product-copy h2 {
  margin-top: 25px;
  font-size: clamp(52px, 6vw, 94px);
}

.product-count {
  margin: 34px 0 0;
  font-size: 11px !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-copy > p:not(.eyebrow):not(.product-count) {
  max-width: 440px;
  margin: 34px 0;
  color: #a7a39c;
  font-size: 12px;
  line-height: 1.8;
}

.future-product {
  min-height: 470px;
  display: grid;
  grid-template-columns: 0.25fr 1fr 0.5fr;
  gap: 6vw;
  align-items: center;
  padding: 90px clamp(28px, 6vw, 105px);
  color: #fff;
  background: #0a0a0a;
}

.future-product h2 {
  margin: 0;
}

.future-product p {
  color: #888;
  font-size: 12px;
  line-height: 1.8;
}

.journal-grid {
  padding: 0 clamp(28px, 6vw, 105px) 150px;
}

.journal-feature {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(45px, 8vw, 125px);
  align-items: center;
}

.journal-feature figure {
  margin: 0;
  overflow: hidden;
}

.journal-feature figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1000ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.journal-feature:hover figure img {
  transform: scale(1.03);
}

.journal-meta,
.article-byline {
  color: #77716a;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.journal-feature h2 {
  margin: 28px 0;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(45px, 5.7vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.journal-feature > div > p:not(.journal-meta) {
  max-width: 490px;
  margin: 0 0 34px;
  color: #5f5a54;
  font-size: 12px;
  line-height: 1.75;
}

.article-header {
  padding: 120px clamp(28px, 8vw, 145px) 85px;
}

.article-header .animated-title {
  max-width: 1300px;
  margin-top: 30px;
  font-size: clamp(58px, 8.4vw, 137px);
}

.article-byline {
  display: flex;
  gap: 24px;
  margin-top: 45px;
}

.article-hero {
  margin: 0 12px;
}

.article-hero img {
  width: 100%;
  max-height: 78vh;
  object-fit: cover;
}

.article-body {
  max-width: 830px;
  margin: 0 auto;
  padding: 110px 30px 150px;
}

.article-body h2 {
  margin: 72px 0 20px;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.article-body > p:not(.lead) {
  color: #514d48;
  font-size: 15px;
  line-height: 1.9;
}

.article-body .action-link {
  margin-top: 70px;
}

.inquire-intro {
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 105px clamp(28px, 6vw, 105px) 90px;
}

.inquire-intro .animated-title {
  margin-top: 28px;
}

.inquire-intro > p:last-child {
  max-width: 500px;
  margin: 38px 0 0 auto;
  color: #99958f;
  font-size: 12px;
  line-height: 1.75;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 8vw;
  padding: clamp(95px, 10vw, 150px) clamp(28px, 6vw, 105px);
  color: #111;
  background: var(--paper);
}

.form-heading h2 {
  margin-top: 36px;
  font-size: clamp(46px, 5vw, 76px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 24px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-grid label span {
  color: #625e58;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #aaa49c;
  border-radius: 0;
  padding: 10px 2px 13px;
  color: #111;
  outline: none;
  background: transparent;
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-bottom-color: #111;
}

.full-field {
  grid-column: 1 / -1;
}

.submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
}

.submit-row p {
  max-width: 430px;
  margin: 0;
  color: #77716a;
  font-size: 10px;
  line-height: 1.6;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  border: 1px solid #111;
  padding: 15px 18px;
  color: #fff;
  background: #111;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 250ms ease, color 250ms ease;
}

.submit-button:hover {
  color: #111;
  background: transparent;
}

.thank-you-page {
  min-height: calc(100svh - 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px clamp(28px, 8vw, 145px);
}

.thank-you-page .animated-title {
  max-width: 1050px;
  margin-top: 28px;
  font-size: clamp(58px, 8vw, 126px);
}

.thank-you-page > p:not(.eyebrow) {
  max-width: 570px;
  margin: 42px 0 0;
  color: #96928b;
  font-size: 13px;
  line-height: 1.8;
}

.thank-you-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
}

.legal-page {
  min-height: 700px;
  padding: 140px clamp(28px, 8vw, 145px);
}

.legal-page .animated-title {
  margin-top: 25px;
  font-size: clamp(60px, 9vw, 140px);
}

.legal-copy {
  max-width: 650px;
  margin: 80px 0 0 auto;
  color: #5f5a54;
  font-size: 14px;
  line-height: 1.8;
}

.legal-copy a {
  text-decoration: underline;
}

.footer-frame {
  color: #fff;
  background: #050505;
}

.site-footer {
  padding: 95px clamp(28px, 6vw, 105px) 34px;
  border-top: 1px solid var(--line);
}

.footer-primary {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 90px;
}

.footer-email {
  display: inline-block;
  margin-top: 20px;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(38px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.footer-inquire {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid #fff;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 28px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  color: #888;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact,
.footer-social,
.footer-legal {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-contact a,
.footer-social a {
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-legal {
  justify-content: flex-end;
}

@media (max-width: 1050px) {
  .top-bar {
    grid-template-columns: 1fr auto auto;
    padding: 0 24px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .top-inquire {
    justify-self: end;
  }

  .statement-section,
  .services-section,
  .about-copy {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .review-promise {
    grid-template-columns: 1fr 1fr;
  }

  .review-promise .section-index {
    grid-column: 1 / -1;
  }

  .future-product {
    grid-template-columns: 0.3fr 1fr;
  }

  .future-product p {
    grid-column: 2;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .top-bar {
    height: 72px;
    padding: 0 17px;
  }

  .brand-link {
    width: 98px;
    height: 58px;
  }

  .top-inquire {
    padding: 10px 12px;
    font-size: 9px;
  }

  .mobile-menu-button svg {
    width: 22px;
  }

  .site-main {
    padding-top: 72px;
  }

  .page-section {
    padding: 78px 20px;
  }

  .animated-title {
    font-size: clamp(52px, 18vw, 86px);
    line-height: 0.87;
  }

  .home-hero {
    min-height: calc(100svh - 72px);
  }

  .home-hero-image {
    object-position: 58% center;
  }

  .home-hero-shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.12) 75%);
  }

  .hero-brand-mark {
    top: 18px;
    right: 18px;
    width: 105px;
  }

  .hero-copy {
    right: 20px;
    left: 20px;
    bottom: 65px;
  }

  .hero-copy .animated-title {
    font-size: clamp(54px, 17.4vw, 82px);
  }

  .hero-intro {
    max-width: 360px;
    font-size: 12px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .scroll-cue {
    display: none;
  }

  .statement-section {
    min-height: 0;
  }

  .display-statement {
    font-size: clamp(45px, 13.5vw, 68px);
  }

  .statement-meta {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    padding: 0 20px 45px;
  }

  .section-heading-row h2,
  .home-cta h2,
  .review-promise h2,
  .team-section h2,
  .product-copy h2,
  .future-product h2,
  .form-heading h2 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .marquee-card {
    width: 72vw;
    height: 92vw;
    border-radius: 20px;
  }

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

  .service-grid article {
    min-height: 330px;
    padding: 30px 0;
  }

  .service-grid article + article {
    padding-left: 0;
    border-left: 0;
  }

  .service-grid h3 {
    margin-top: 75px;
  }

  .home-cta {
    min-height: 590px;
    padding: 90px 20px;
  }

  .page-intro {
    min-height: 450px;
    padding: 75px 20px 58px;
  }

  .intro-copy {
    margin-left: 0;
  }

  .portfolio-tabs-list {
    top: 72px;
    height: 62px !important;
    gap: 26px !important;
    padding: 0 20px !important;
  }

  .portfolio-tabs-list button {
    height: 62px !important;
  }

  .masonry-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 34vw;
    gap: 6px;
    padding: 6px;
  }

  .gallery-tile,
  .gallery-tile.wide,
  .gallery-tile.tall {
    grid-column: span 1;
    grid-row: span 2;
  }

  .gallery-tile.wide {
    grid-column: 1 / -1;
  }

  .gallery-end-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 70px 20px 95px;
  }

  .film-grid {
    grid-template-columns: 1fr;
    padding: 6px 6px 90px;
  }

  .film-profile-link {
    min-height: 130px;
  }

  .featured-review {
    grid-template-columns: 1fr;
    padding: 0 20px 95px;
  }

  .featured-review blockquote {
    font-size: 42px;
  }

  .review-promise {
    grid-template-columns: 1fr;
    padding: 90px 20px;
  }

  .about-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 75px 20px;
  }

  .about-title .animated-title {
    font-size: clamp(55px, 17vw, 86px);
  }

  .about-portrait {
    margin-top: 25px;
  }

  .about-prose .lead,
  .article-body .lead {
    font-size: 41px;
  }

  .prose-columns {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .team-section {
    grid-template-columns: 1fr;
    padding: 90px 20px;
  }

  .product-feature {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 470px;
  }

  .product-copy {
    padding: 75px 20px;
  }

  .future-product {
    grid-template-columns: 1fr;
    padding: 75px 20px;
  }

  .future-product p {
    grid-column: auto;
  }

  .journal-grid {
    padding: 0 20px 100px;
  }

  .journal-feature {
    grid-template-columns: 1fr;
  }

  .journal-feature h2 {
    font-size: 47px;
  }

  .article-header {
    padding: 85px 20px 55px;
  }

  .article-header .animated-title {
    font-size: clamp(49px, 15vw, 75px);
  }

  .article-hero {
    margin: 0 6px;
  }

  .article-body {
    padding: 80px 20px 110px;
  }

  .inquire-intro {
    min-height: 520px;
    padding: 75px 20px 65px;
  }

  .inquire-intro > p:last-child {
    margin-left: 0;
  }

  .inquiry-form {
    padding: 80px 20px;
  }

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

  .full-field {
    grid-column: auto;
  }

  .submit-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .thank-you-page {
    min-height: calc(100svh - 72px);
    padding: 85px 20px;
  }

  .thank-you-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-page {
    min-height: 600px;
    padding: 90px 20px;
  }

  .site-footer {
    padding: 75px 20px 30px;
  }

  .footer-primary {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 70px;
  }

  .footer-email {
    font-size: clamp(31px, 9vw, 45px);
  }

  .footer-secondary {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-legal {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* Symboll-inspired home direction */
.top-status {
  display: none;
}

.desktop-nav-left {
  justify-self: start;
}

.desktop-nav-right {
  justify-self: end;
}

.desktop-nav-right .top-inquire {
  margin-left: 4px;
  border: 0;
  border-radius: 999px;
  padding: 13px 21px;
  background: var(--brand-brown);
  color: #fff;
  font-weight: 600;
}

.page-home .top-status {
  position: fixed;
  z-index: 60;
  top: 10px;
  left: 4.5%;
  width: 91%;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 45px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(90deg, rgba(38, 30, 25, 0.88), rgba(118, 82, 57, 0.75), rgba(38, 30, 25, 0.88));
  backdrop-filter: blur(16px);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.page-home .top-status strong {
  font-weight: 600;
}

.page-home .top-bar {
  top: 47px;
  height: 82px;
  grid-template-columns: 1fr 155px 1fr;
  gap: 24px;
  padding: 0 5.5%;
  border: 0;
  background: linear-gradient(180deg, rgba(2, 8, 14, 0.8), transparent);
  backdrop-filter: none;
}

.page-home .brand-link {
  justify-self: center;
  width: 140px;
}

.page-home .desktop-nav {
  gap: clamp(17px, 2vw, 35px);
}

.page-home .desktop-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
}

.page-home .site-main {
  padding-top: 0;
}

.symbol-home {
  color: #fff;
  background: #000;
  font-family: "Montserrat", Arial, sans-serif;
}

.symbol-hero {
  position: relative;
  min-height: 765px;
  overflow: hidden;
  background: #090807;
}

.symbol-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 37%;
  filter: saturate(0.72) contrast(1.08) brightness(0.66);
  animation: symbol-hero-in 1400ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.symbol-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.46), rgba(53, 35, 24, 0.1)), linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent 58%);
}

@keyframes symbol-hero-in {
  from { opacity: 0; transform: scale(1.09); }
  to { opacity: 1; transform: scale(1); }
}

.symbol-hero-layout {
  position: relative;
  z-index: 2;
  min-height: 765px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: end;
  gap: 5vw;
  padding: 170px 5% 86px;
}

.symbol-locations {
  display: flex;
  gap: 17px;
  margin: 0 0 48px;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.symbol-locations span + span::before {
  content: "·";
  margin-right: 17px;
  color: rgba(255, 255, 255, 0.5);
}

.symbol-hero-left h2 {
  margin: 0;
  max-width: 430px;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(54px, 5.2vw, 82px);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.045em;
}

.symbol-hero-right {
  align-self: center;
  padding-top: 45px;
}

.symbol-hero-right h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 0;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(128px, 13vw, 205px);
  font-weight: 500;
  line-height: 0.69;
  letter-spacing: -0.07em;
}

.symbol-word {
  display: block;
  opacity: 0;
  transform: translateY(75%);
  animation: symbol-word-rise 1000ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.symbol-word-one {
  color: #fff;
  animation-delay: 180ms;
}

.symbol-word-two {
  color: var(--brand-brown-soft);
  font-style: italic;
  animation-delay: 300ms;
}

@keyframes symbol-word-rise {
  to { opacity: 1; transform: translateY(0); }
}

.symbol-hero-right > p {
  max-width: 520px;
  margin: 35px 0 0 auto;
  color: rgba(255, 255, 255, 0.57);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-align: right;
  text-transform: uppercase;
}

.symbol-scroll {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.symbol-story-strip {
  overflow: hidden;
  padding: 40px 0 85px;
  background: #000;
}

.symbol-story-strip .marquee-track {
  gap: 18px;
  animation-duration: 54s;
}

.symbol-story-strip .marquee-card {
  width: clamp(320px, 30vw, 465px);
  height: clamp(218px, 20vw, 310px);
  border-radius: 28px;
}

.symbol-story-strip .marquee-card img {
  filter: saturate(0.9);
}

.symbol-projects {
  padding: 85px 5% 150px;
  background: #000;
}

.symbol-section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.symbol-section-title p {
  margin: 0 0 20px;
  color: #777;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.symbol-section-title h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(88px, 10.5vw, 164px);
  font-weight: 500;
  line-height: 0.76;
  letter-spacing: -0.065em;
}

.symbol-tabs {
  gap: 0 !important;
  margin-top: 55px;
}

.symbol-tabs-list {
  width: auto !important;
  height: 46px !important;
  display: flex !important;
  justify-content: flex-start !important;
  gap: 24px !important;
  border: 0 !important;
  color: #888 !important;
  background: transparent !important;
}

.symbol-tabs-list button {
  flex: 0 0 auto !important;
  height: 46px !important;
  padding: 0 !important;
  color: inherit !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.symbol-tabs-list button[data-state="active"] {
  color: #fff !important;
}

.symbol-tabs-list button::after {
  background: var(--brand-brown-soft) !important;
}

.symbol-project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 75px 28px;
  padding: 55px 0 90px;
}

.symbol-project {
  grid-column: span 6;
}

.symbol-project-1,
.symbol-project-5 {
  grid-column: 1 / span 5;
}

.symbol-project-2,
.symbol-project-6 {
  grid-column: 7 / span 6;
  padding-top: 115px;
}

.symbol-project-3 {
  grid-column: 1 / span 7;
}

.symbol-project-4 {
  grid-column: 9 / span 4;
  padding-top: 170px;
}

.symbol-project figure {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #111;
}

.symbol-project-2 figure,
.symbol-project-4 figure,
.symbol-project-6 figure {
  aspect-ratio: 4 / 5;
}

.symbol-project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 400ms ease;
}

.symbol-project figure > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #111;
  background: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 300ms ease, transform 300ms ease;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

.symbol-project:hover img {
  transform: scale(1.035);
  filter: brightness(0.82);
}

.symbol-project:hover figure > span {
  opacity: 1;
  transform: translateY(0);
}

.symbol-project > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 5px 0;
}

.symbol-project h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.symbol-project p {
  margin: 0;
  color: #777;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.symbol-film-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 55px 0 75px;
}

.symbol-film-row article {
  overflow: hidden;
  border-radius: 28px;
  background: #111;
}

.symbol-film-row iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.symbol-film-row h3 {
  margin: 0;
  padding: 20px;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: 32px;
  font-weight: 500;
}

.symbol-experience {
  overflow: hidden;
  padding: 65px 5% 140px;
  color: #090909;
  background: var(--paper);
}

.symbol-experience > h2 {
  margin: 0 0 80px;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(128px, 18vw, 280px);
  font-weight: 500;
  line-height: 0.7;
  letter-spacing: -0.07em;
  text-align: center;
}

.symbol-experience-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr 0.52fr;
  gap: 30px;
  align-items: end;
}

.symbol-about-copy {
  padding: 0 30px 25px 0;
}

.symbol-kicker {
  margin: 0;
  color: #777;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.symbol-about-copy h3 {
  margin: 35px 0;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(43px, 4.2vw, 67px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.symbol-about-copy > p:not(.symbol-kicker) {
  margin: 0 0 38px;
  color: #5f5a54;
  font-size: 12px;
  line-height: 1.75;
}

.symbol-about-main,
.symbol-about-small {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
}

.symbol-about-main {
  height: 670px;
}

.symbol-about-small {
  height: 420px;
}

.symbol-about-main img,
.symbol-about-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.symbol-numbers {
  padding: 115px 5% 130px;
  background: #000;
}

.symbol-numbers > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 45px 0 55px;
  border-top: 1px solid #292929;
}

.symbol-numbers article {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px 26px 22px 0;
  border-bottom: 1px solid #292929;
}

.symbol-numbers article + article {
  padding-left: 26px;
  border-left: 1px solid #292929;
}

.symbol-numbers article > span {
  color: #888;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.symbol-numbers strong {
  color: var(--brand-brown-soft);
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(96px, 11vw, 175px);
  font-weight: 500;
  line-height: 0.7;
  letter-spacing: -0.055em;
}

.symbol-investment {
  position: relative;
  min-height: 780px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background: #111;
}

.symbol-investment::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 11, 7, 0.15), rgba(0, 0, 0, 0.76));
}

.symbol-investment > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.symbol-investment > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 25px;
}

.symbol-investment p {
  margin: 0 0 32px;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.symbol-investment h2 {
  margin: 0 0 48px;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(80px, 10.5vw, 164px);
  font-weight: 500;
  line-height: 0.74;
  letter-spacing: -0.055em;
}

.symbol-investment h2 em {
  color: var(--brand-brown-soft);
  font-style: italic;
}

@media (max-width: 1150px) {
  .page-home .top-bar {
    grid-template-columns: 1fr auto auto;
  }

  .page-home .desktop-nav {
    display: none;
  }

  .page-home .brand-link {
    justify-self: start;
  }

  .page-home .mobile-menu-button {
    display: block;
  }

  .symbol-hero-layout {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .symbol-experience-grid {
    grid-template-columns: 0.75fr 1fr;
  }

  .symbol-about-small {
    display: none;
  }
}

@media (max-width: 760px) {
  .page-home .top-status {
    left: 14px;
    width: calc(100% - 28px);
    padding: 7px 18px;
    font-size: 8px;
  }

  .page-home .top-status > span {
    display: none;
  }

  .page-home .top-bar {
    top: 43px;
    height: 70px;
    padding: 0 18px;
  }

  .page-home .brand-link {
    width: 110px;
  }

  .symbol-hero,
  .symbol-hero-layout {
    min-height: 720px;
  }

  .symbol-hero-image {
    object-position: 58% center;
  }

  .symbol-hero-layout {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 40px;
    padding: 145px 20px 60px;
  }

  .symbol-hero-right {
    grid-row: 1;
    align-self: start;
    padding-top: 0;
  }

  .symbol-hero-right h1 {
    font-size: clamp(82px, 26vw, 112px);
  }

  .symbol-hero-right > p {
    max-width: 315px;
    margin-top: 26px;
    font-size: 8px;
  }

  .symbol-locations {
    margin-bottom: 25px;
    font-size: 7px;
  }

  .symbol-hero-left h2 {
    font-size: 55px;
  }

  .symbol-scroll {
    display: none;
  }

  .symbol-story-strip {
    padding: 20px 0 65px;
  }

  .symbol-story-strip .marquee-card {
    width: 78vw;
    height: 52vw;
    border-radius: 22px;
  }

  .symbol-projects {
    padding: 70px 14px 100px;
  }

  .symbol-section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .symbol-section-title h2 {
    font-size: 82px;
  }

  .symbol-project-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 35px 0 65px;
  }

  .symbol-project,
  .symbol-project-1,
  .symbol-project-2,
  .symbol-project-3,
  .symbol-project-4,
  .symbol-project-5,
  .symbol-project-6 {
    grid-column: auto;
    padding-top: 0;
  }

  .symbol-project figure,
  .symbol-project-2 figure,
  .symbol-project-4 figure,
  .symbol-project-6 figure {
    aspect-ratio: 4 / 5;
    border-radius: 22px;
  }

  .symbol-project figure > span {
    opacity: 1;
    transform: none;
  }

  .symbol-film-row {
    grid-template-columns: 1fr;
  }

  .symbol-experience {
    padding: 60px 20px 90px;
  }

  .symbol-experience > h2 {
    margin-bottom: 55px;
    font-size: 27vw;
    transform: translateX(-3vw);
  }

  .symbol-experience-grid {
    grid-template-columns: 1fr;
  }

  .symbol-about-copy {
    padding: 0 0 25px;
  }

  .symbol-about-main {
    height: 520px;
    border-radius: 22px;
  }

  .symbol-numbers {
    padding: 85px 20px 100px;
  }

  .symbol-numbers > div {
    grid-template-columns: 1fr;
  }

  .symbol-numbers article,
  .symbol-numbers article + article {
    min-height: 170px;
    padding: 24px 0;
    border-left: 0;
  }

  .symbol-investment {
    min-height: 650px;
  }

  .symbol-investment h2 {
    font-size: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .title-word {
    opacity: 1;
    transform: none;
  }
}

/* Corrected Manus reconstruction */
.desktop-nav {
  gap: clamp(12px, 1.55vw, 27px);
}

.desktop-nav a {
  font-size: 9px;
}

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-marquee {
  overflow: hidden;
  padding: 95px 0 110px;
}

.marquee-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(28px, 6vw, 105px) 42px;
}

.marquee-heading > span {
  color: #777;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-work {
  padding: 20px 12px 130px;
}

.home-work-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 105px clamp(16px, 5vw, 92px) 65px;
}

.home-work-heading h2,
.investment-section h2,
.coverage-section h2,
.pricing-guide h2,
.team-roster h2,
.preset-integrity h2 {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(54px, 7.4vw, 118px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.home-work-heading h2 em,
.investment-section h2 em,
.coverage-section h2 em,
.team-roster h2 em,
.preset-integrity h2 em {
  color: #7a746c;
  font-weight: 400;
}

.project-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 12px;
}

.project-preview figure {
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #ddd8cf;
}

.project-preview:nth-child(3n + 2) figure {
  aspect-ratio: 4 / 5.55;
}

.project-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1000ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 600ms ease;
}

.project-preview:hover img {
  transform: scale(1.035);
  filter: brightness(0.9);
}

.project-preview > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 4px 0;
}

.project-preview h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 1;
}

.project-preview p {
  margin: 0;
  color: #77716a;
  font-size: 8px;
  letter-spacing: 0.13em;
  text-align: right;
  text-transform: uppercase;
}

.stats-section {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: 8vw;
  padding: 95px clamp(28px, 6vw, 105px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.stats-grid > div {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 24px 18px 0;
  border-bottom: 1px solid var(--line);
}

.stats-grid > div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.stats-grid strong {
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(65px, 7.5vw, 110px);
  font-weight: 400;
  line-height: 0.9;
}

.stats-grid span {
  color: #888;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.investment-section {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.15fr 0.55fr;
  gap: 10vw;
  align-items: end;
  padding: 110px clamp(28px, 6vw, 105px);
}

.investment-section > div:last-child > p {
  margin: 0 0 42px;
  color: #5f5a54;
  font-size: 13px;
  line-height: 1.85;
}

.home-testimonial {
  position: relative;
  min-height: 820px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.home-testimonial::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.home-testimonial > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-testimonial > div {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  padding: 90px 28px;
  text-align: center;
}

.review-stars-light {
  justify-content: center;
  color: #fff;
}

.home-testimonial blockquote {
  margin: 38px 0;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(47px, 6.5vw, 96px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.home-testimonial p {
  margin: 0;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-tile figcaption {
  inset: auto 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 350ms ease, transform 350ms ease;
}

.gallery-tile:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-tile figcaption span,
.gallery-tile figcaption small {
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gallery-tile figcaption strong {
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(24px, 2.6vw, 41px);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: none;
}

.gallery-end-cta > div > span {
  display: block;
  margin-top: 10px;
  color: #888;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: #111;
  background: var(--paper);
}

.package-grid article {
  min-height: 630px;
  display: flex;
  flex-direction: column;
  padding: 60px clamp(28px, 4vw, 64px);
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.package-grid article > p,
.package-grid article > span {
  color: #77716a;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.package-grid h2 {
  margin: 95px 0 24px;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(40px, 4.5vw, 70px);
  font-weight: 400;
  line-height: 0.95;
}

.package-grid strong {
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(54px, 5.4vw, 82px);
  font-weight: 400;
}

.package-grid .action-link {
  margin-top: auto;
}

.package-grid .featured-package {
  color: #fff;
  background: #111;
}

.package-grid .featured-package > p,
.package-grid .featured-package > span {
  color: #999;
}

.coverage-section {
  display: grid;
  grid-template-columns: 0.8fr 0.65fr;
  gap: 10vw;
}

.coverage-list {
  border-top: 1px solid var(--dark-line);
}

.coverage-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--dark-line);
}

.coverage-list h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: 27px;
  font-weight: 400;
}

.coverage-list p {
  margin: 0;
  color: #6f6962;
  font-size: 11px;
  line-height: 1.65;
}

.pricing-guide {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 10vw;
  align-items: center;
  padding: 100px clamp(28px, 6vw, 105px);
  background: #dcd6cc;
}

.pricing-guide h2 {
  font-size: clamp(52px, 6vw, 92px);
}

.pricing-guide > div > p:last-child {
  max-width: 520px;
  color: #5c5751;
  font-size: 12px;
  line-height: 1.8;
}

.pricing-guide form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-guide label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-guide label span,
.pricing-guide small {
  color: #6b655e;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-guide input {
  border: 0;
  border-bottom: 1px solid #77716a;
  border-radius: 0;
  padding: 12px 0;
  outline: none;
  background: transparent;
}

.pricing-guide button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #111;
  padding: 15px 16px;
  color: #fff;
  background: #111;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.guide-confirmation {
  padding: 30px;
  border: 1px solid #aaa297;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: 30px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: 8vw;
  padding: 110px clamp(28px, 6vw, 105px) 140px;
}

.faq-section > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--dark-line);
}

.faq-section article {
  min-height: 240px;
  padding: 28px 30px 28px 0;
  border-bottom: 1px solid var(--dark-line);
}

.faq-section article:nth-child(even) {
  padding-left: 30px;
  border-left: 1px solid var(--dark-line);
}

.faq-section h3 {
  margin: 0 0 45px;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: 30px;
  font-weight: 400;
}

.faq-section p {
  color: #66615b;
  font-size: 11px;
  line-height: 1.75;
}

.team-roster {
  display: grid;
  grid-template-columns: 0.9fr 0.8fr;
  gap: 10vw;
  padding: 110px clamp(28px, 6vw, 105px);
}

.team-roster ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.team-roster li {
  display: flex;
  gap: 24px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(25px, 3vw, 42px);
}

.team-roster li span {
  color: #777;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 8px;
  letter-spacing: 0.14em;
}

.principles-section {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  gap: 8vw;
  padding: 110px clamp(28px, 6vw, 105px) 140px;
}

.principles-section > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.principles-section article {
  min-height: 330px;
  padding: 34px 34px 34px 0;
  border-top: 1px solid var(--dark-line);
}

.principles-section article:nth-child(even) {
  padding-left: 34px;
  border-left: 1px solid var(--dark-line);
}

.principles-section h3 {
  margin: 0 0 110px;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 400;
}

.principles-section p {
  color: #625d57;
  font-size: 11px;
  line-height: 1.8;
}

.preset-note {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(28px, 6vw, 105px) 70px;
  border-bottom: 1px solid var(--line);
}

.preset-note span {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: #8b8781;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.preset-note span + span {
  border-left: 1px solid var(--line);
}

.preset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  color: #fff;
  background: #252525;
}

.preset-grid article {
  background: #0a0a0a;
}

.preset-grid figure {
  aspect-ratio: 4 / 4.6;
  margin: 0;
  overflow: hidden;
}

.preset-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1000ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.preset-grid article:hover img {
  transform: scale(1.03);
}

.preset-grid article > div {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  padding: 35px;
}

.preset-grid p,
.preset-grid span {
  color: #888;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.preset-grid h2 {
  margin: 45px 0 15px;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: clamp(35px, 4vw, 58px);
  font-weight: 400;
  line-height: 0.95;
}

.preset-grid strong {
  margin-top: 35px;
  font-family: "Cormorant Garamond", Didot, serif;
  font-size: 49px;
  font-weight: 400;
}

.preset-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.preset-integrity {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 10vw;
  align-items: end;
  padding: 120px clamp(28px, 6vw, 105px);
  color: #111;
  background: var(--paper);
}

.preset-integrity > p {
  color: #5c5751;
  font-size: 12px;
  line-height: 1.8;
}

.footer-brand-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}

.footer-brand-line img {
  width: 138px;
  height: 70px;
  object-fit: contain;
}

.footer-brand-line p {
  margin: 0;
  color: #777;
  font-size: 9px;
  line-height: 1.7;
  letter-spacing: 0.14em;
  text-align: right;
  text-transform: uppercase;
}

.footer-primary {
  padding-top: 75px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: #aaa;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.whatsapp-button {
  position: fixed;
  z-index: 45;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(9, 9, 9, 0.9);
  backdrop-filter: blur(12px);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .project-preview-grid,
  .package-grid,
  .preset-grid {
    grid-template-columns: 1fr 1fr;
  }

  .package-grid article:last-child,
  .preset-grid article:last-child {
    grid-column: 1 / -1;
  }

  .stats-section,
  .faq-section,
  .principles-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 760px) {
  .google-rating {
    padding-left: 1px;
  }

  .home-marquee {
    padding: 65px 0 80px;
  }

  .marquee-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 0 20px 32px;
  }

  .home-work {
    padding: 0 6px 85px;
  }

  .home-work-heading {
    align-items: flex-start;
    flex-direction: column;
    padding: 75px 14px 42px;
  }

  .home-work-heading h2,
  .investment-section h2,
  .coverage-section h2,
  .pricing-guide h2,
  .team-roster h2,
  .preset-integrity h2 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .project-preview-grid,
  .package-grid,
  .preset-grid {
    grid-template-columns: 1fr;
  }

  .project-preview:nth-child(3n + 2) figure {
    aspect-ratio: 4 / 5;
  }

  .project-preview > div {
    padding-right: 10px;
    padding-left: 10px;
  }

  .stats-section {
    padding: 75px 20px;
  }

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

  .stats-grid > div {
    min-height: 150px;
    padding: 25px 0;
  }

  .stats-grid > div + div {
    padding-left: 0;
    border-left: 0;
  }

  .investment-section,
  .coverage-section,
  .pricing-guide,
  .team-roster,
  .preset-integrity {
    grid-template-columns: 1fr;
    gap: 55px;
    min-height: 0;
    padding: 80px 20px;
  }

  .home-testimonial {
    min-height: 680px;
  }

  .home-testimonial blockquote {
    font-size: 46px;
  }

  .gallery-tile figcaption {
    opacity: 1;
    transform: none;
  }

  .gallery-tile figcaption strong {
    font-size: 23px;
  }

  .package-grid article,
  .package-grid article:last-child {
    grid-column: auto;
    min-height: 530px;
    padding: 45px 20px;
    border-right: 0;
  }

  .package-grid h2 {
    margin-top: 70px;
  }

  .pricing-guide {
    align-items: start;
  }

  .faq-section {
    padding: 80px 20px 100px;
  }

  .faq-section > div,
  .principles-section > div {
    grid-template-columns: 1fr;
  }

  .faq-section article,
  .faq-section article:nth-child(even),
  .principles-section article,
  .principles-section article:nth-child(even) {
    min-height: 0;
    padding: 28px 0;
    border-left: 0;
  }

  .faq-section h3,
  .principles-section h3 {
    margin-bottom: 35px;
  }

  .principles-section {
    padding: 80px 20px 100px;
  }

  .preset-note {
    grid-template-columns: 1fr;
    padding: 0 20px 50px;
  }

  .preset-note span + span {
    border-left: 0;
  }

  .preset-grid article:last-child {
    grid-column: auto;
  }

  .preset-grid article > div {
    min-height: 360px;
    padding: 30px 20px;
  }

  .footer-brand-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand-line p {
    text-align: left;
  }

  .footer-nav {
    gap: 18px 24px;
  }

  .whatsapp-button {
    right: 12px;
    bottom: 12px;
  }

  .whatsapp-button span {
    display: none;
  }
}
