:root {
  --ink: #17120f;
  --muted: #756b62;
  --cream: #fbf6ee;
  --sand: #efe2d0;
  --linen: #f7efe3;
  --taupe: #b69d82;
  --coffee: #5b4638;
  --white: #ffffff;
  --line: rgba(23, 18, 15, 0.12);
  --shadow: 0 28px 70px rgba(62, 45, 31, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(239, 226, 208, 0.78), transparent 30rem),
    linear-gradient(180deg, var(--cream), #fffaf4 44%, var(--linen));
  font-family: var(--sans);
  line-height: 1.7;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  border-color: var(--line);
  background: rgba(251, 246, 238, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 156px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  color: var(--coffee);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-toggle {
  display: none;
}

.section-pad {
  padding: clamp(76px, 9vw, 138px) clamp(20px, 5vw, 86px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
  min-height: 100vh;
  padding-top: 128px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--taupe);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  max-width: 880px;
  margin-bottom: 28px;
  font-size: clamp(56px, 8.5vw, 126px);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5.6vw, 84px);
}

h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 1;
}

.hero-text,
.section-heading > p,
.intro-copy,
.contact > div:first-child p {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--ink);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.38);
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 8% -7% -8% 12%;
  z-index: -1;
  border: 1px solid var(--line);
  background: var(--sand);
  content: "";
}

.hero-main {
  width: min(100%, 540px);
  margin-left: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  bottom: -38px;
  left: -10px;
  width: clamp(150px, 18vw, 250px);
  border: 10px solid var(--cream);
  box-shadow: 0 18px 44px rgba(62, 45, 31, 0.2);
}

.intro {
  border-top: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
}

.intro-copy p {
  margin-bottom: 20px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
}

.feature-strip article {
  padding: clamp(30px, 5vw, 64px);
  border-right: 1px solid var(--line);
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-strip span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--taupe);
  font-family: var(--serif);
  font-size: 26px;
}

.feature-strip p,
.team-card p,
.product-card p,
.product-card span,
.contact-card p {
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.45fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 70px);
}

.section-heading.narrow {
  display: block;
  max-width: 920px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 34px);
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 18px 50px rgba(62, 45, 31, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.product-card div {
  padding: 24px;
}

.product-card p,
.team-card > div > p:first-child {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 18px;
}

.product-card span {
  display: block;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.gallery {
  background: var(--ink);
  color: var(--cream);
}

.gallery .eyebrow,
.gallery .section-heading > p {
  color: #d7c1a6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: clamp(14px, 2vw, 28px);
  align-items: stretch;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.gallery-grid img:nth-child(3) {
  min-height: 440px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 54px);
}

.team-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.75fr) 1fr;
  gap: 28px;
  align-items: center;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.quote-block {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background: var(--sand);
}

.quote-block img {
  width: 100%;
  max-width: 360px;
  justify-self: center;
  mix-blend-mode: multiply;
}

blockquote {
  margin: 0;
}

blockquote p {
  max-width: 980px;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 92px);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.contact-card {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.contact-card > a {
  display: block;
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

.contact-card p {
  margin: 30px 0;
  color: #d7c1a6;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 246, 238, 0.2);
}

.socials a {
  padding: 10px 16px;
  border: 1px solid rgba(251, 246, 238, 0.28);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 86px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1040px) {
  .hero,
  .intro-grid,
  .section-heading,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-main {
    margin-left: 0;
  }

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

  .feature-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-strip article:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 760px) {
  .site-header {
    padding: 14px 20px;
  }

  .brand {
    width: 128px;
  }

  .nav-toggle {
    position: relative;
    z-index: 42;
    display: inline-grid;
    gap: 7px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(251, 246, 238, 0.72);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .nav-toggle.is-active span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle.is-active span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
    display: grid;
    width: 100vw;
    height: 100svh;
    min-height: 100vh;
    align-content: center;
    justify-items: center;
    gap: 22px;
    background: var(--cream);
    font-family: var(--serif);
    font-size: 38px;
    letter-spacing: -0.02em;
    opacity: 0;
    pointer-events: none;
    text-transform: none;
    transform: translateY(-18px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 220ms ease, visibility 0s linear 220ms;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .section-pad {
    padding: 72px 20px;
  }

  .hero {
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(48px, 17vw, 72px);
  }

  h2 {
    font-size: clamp(38px, 13vw, 56px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-badge {
    right: 12px;
    bottom: -28px;
    left: auto;
    width: 150px;
  }

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

  .gallery-grid img,
  .gallery-grid img:nth-child(3) {
    min-height: 300px;
  }

  .team-card,
  .quote-block {
    grid-template-columns: 1fr;
  }

  .team-card img {
    max-height: 430px;
  }

  .site-footer {
    flex-direction: column;
  }
}
