:root {
  --bg: #0d0d0c;
  --bg-soft: #151411;
  --bg-elevated: #1b1916;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --text: #f7f0e7;
  --muted: #cfbfaf;
  --muted-strong: #e6d7c9;
  --line: rgba(255, 255, 255, 0.09);
  --accent: #d7a969;
  --accent-deep: #ad6f3a;
  --accent-soft: rgba(215, 169, 105, 0.14);
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.32);
  --shadow-md: 0 20px 52px rgba(0, 0, 0, 0.22);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1200px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at 10% 5%, rgba(215, 169, 105, 0.12), transparent 24%),
    radial-gradient(circle at 90% 15%, rgba(173, 111, 58, 0.12), transparent 26%),
    linear-gradient(180deg, #0d0d0c 0%, #11100f 42%, #0c0c0b 100%);
  line-height: 1.6;
}

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

img,
iframe {
  border: 0;
}

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

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

button {
  color: inherit;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

.site-shell::before {
  width: 34rem;
  height: 34rem;
  left: -12rem;
  top: 30rem;
  background: radial-gradient(circle, rgba(215, 169, 105, 0.08), transparent 70%);
}

.site-shell::after {
  width: 28rem;
  height: 28rem;
  right: -9rem;
  top: 6rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.045), transparent 70%);
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.section-tight {
  padding: 0 0 2rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.95;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.2rem, 7.6vw, 6.4rem);
  max-width: 11ch;
}

h1 span {
  color: var(--accent);
}

h2 {
  font-size: clamp(2.35rem, 4.7vw, 4rem);
  max-width: 14ch;
}

h3 {
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.15;
}

p {
  margin: 0;
  color: var(--muted);
}

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 9, 0.68);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #1a140d;
  font-weight: 800;
  background: linear-gradient(145deg, #ecc488, #b1783e);
  box-shadow: 0 10px 26px rgba(213, 166, 93, 0.22);
}

.brand-text {
  display: grid;
  gap: 0.18rem;
}

.brand-text strong {
  font-size: 0.98rem;
  color: var(--text);
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 2.6rem;
  height: 2.6rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  margin: 0.38rem 0;
}

.hero {
  padding-top: 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1.35rem;
}

.hero-text {
  max-width: 60ch;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(145deg, #e0b36d, #b2763d);
  color: #1a140d;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(173, 111, 58, 0.22);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin: 0.3rem 0 0;
}

.hero-points li {
  padding: 0.58rem 0.88rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.hero-visual {
  min-width: 0;
}

.hero-stage {
  position: relative;
  min-height: 44rem;
}

.hero-card,
.editorial-card,
.feature-shell,
.service-card,
.gallery-item,
.contact-panel,
.contact-card,
.cred-grid article {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.hero-main-frame,
.editorial-card,
.gallery-item {
  overflow: hidden;
}

.hero-main-frame {
  position: absolute;
  right: 0;
  top: 0;
  width: min(100%, 34rem);
  border-radius: var(--radius-xl);
}

.hero-main-frame img {
  aspect-ratio: 0.86;
  object-fit: cover;
  object-position: center top;
}

.hero-inset-card {
  position: absolute;
  left: 0;
  bottom: 2.2rem;
  width: clamp(12rem, 32vw, 18rem);
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transform: translateY(0);
}

.hero-food-frame img {
  aspect-ratio: 0.95;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  padding: 0.92rem 1rem;
  min-width: 14rem;
  border-radius: 18px;
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 9, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
}

.hero-badge span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-badge strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1rem;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cred-grid article {
  border-radius: var(--radius-lg);
  padding: 1.45rem;
}

.cred-grid span,
.service-card span {
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.cred-grid h2 {
  font-family: var(--sans);
  font-size: 1.15rem;
  max-width: unset;
  margin: 0.55rem 0 0.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 2.2rem;
  align-items: center;
}

.section-heading {
  display: grid;
  gap: 1rem;
}

.content-stack {
  display: grid;
  gap: 1.15rem;
}

.about-visuals {
  display: grid;
  grid-template-columns: 1.1fr 0.82fr;
  gap: 1rem;
  align-items: end;
}

.editorial-card {
  border-radius: var(--radius-xl);
}

.tall-card img {
  aspect-ratio: 0.78;
  object-fit: cover;
  object-position: center top;
}

.small-card {
  margin-bottom: 1.2rem;
}

.small-card img {
  aspect-ratio: 0.9;
  object-fit: cover;
}

.feature-band {
  padding-top: 1rem;
}

.feature-shell {
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.6rem;
  align-items: center;
}

.feature-copy {
  display: grid;
  gap: 1rem;
}

.feature-points {
  display: grid;
  gap: 0.95rem;
  margin-top: 0.4rem;
}

.feature-points div {
  padding: 1rem 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
}

.feature-points h3 {
  margin-bottom: 0.4rem;
}

.feature-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1rem;
  align-items: stretch;
}

.wide-card img {
  aspect-ratio: 1.15;
  object-fit: cover;
}

.set-card img {
  aspect-ratio: 0.84;
  object-fit: cover;
}

.section-intro {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.section-intro p:last-child {
  max-width: 64ch;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  min-height: 15rem;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(215, 169, 105, 0.26);
}

 .gallery-intro {
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.7fr);
  align-items: end;
  gap: 2rem;
}

.gallery-intro h2 {
  max-width: 13ch;
}

.gallery-intro > p {
  max-width: 52ch;
  margin-left: auto;
}

.gallery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: -0.55rem 0 1.35rem;
}

.gallery-meta span {
  border: 1px solid rgba(215, 169, 105, 0.22);
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted-strong);
  border-radius: 999px;
  padding: 0.48rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(8.75rem, 12vw, 12rem);
  grid-auto-flow: dense;
  gap: 0.9rem;
}

.gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  transform: translateZ(0);
}

.gallery-feature {
  grid-column: span 8;
  grid-row: span 3;
}

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

.gallery-wide {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery-medium {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-small {
  grid-column: span 3;
  grid-row: span 1;
}

.gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  background: transparent;
  text-align: left;
  overflow: hidden;
}

.gallery-trigger::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 36%, rgba(0, 0, 0, 0.72) 100%),
    radial-gradient(circle at 20% 10%, rgba(215, 169, 105, 0.18), transparent 35%);
  opacity: 0.86;
  transition: opacity 220ms ease;
}

.gallery-trigger::after {
  content: "View";
  position: absolute;
  z-index: 2;
  top: 0.9rem;
  right: 0.9rem;
  border-radius: 999px;
  padding: 0.38rem 0.62rem;
  background: rgba(13, 13, 12, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(10px);
}

.gallery-trigger:hover::after,
.gallery-trigger:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-trigger:focus-visible {
  outline: 3px solid rgba(215, 169, 105, 0.74);
  outline-offset: -3px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-tall img {
  object-position: center 24%;
}

.gallery-medium:nth-of-type(5) img {
  object-position: center 18%;
}

.gallery-small:nth-of-type(7) img,
.gallery-medium:nth-of-type(9) img {
  object-position: center 18%;
}

.gallery-trigger:hover img,
.gallery-trigger:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.03);
}

.gallery-trigger:hover::before,
.gallery-trigger:focus-visible::before {
  opacity: 0.68;
}

.gallery-overlay {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.25rem;
  color: var(--text);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}

.gallery-overlay small {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-overlay strong {
  max-width: 22ch;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.gallery-small .gallery-overlay {
  bottom: 0.75rem;
  left: 0.85rem;
  right: 0.85rem;
}

.gallery-small .gallery-overlay strong {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.25rem;
}

.contact-copy {
  display: grid;
  gap: 1rem;
}

.contact-cards {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.55rem;
}

.contact-card {
  border-radius: 18px;
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.25rem;
  transition: border-color 180ms ease, transform 180ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(215, 169, 105, 0.35);
}

.contact-card small {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.contact-card strong {
  font-size: 1rem;
  color: var(--text);
  word-break: break-word;
}

.contact-panel {
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
  min-height: 31rem;
}

.panel-head {
  display: grid;
  gap: 0.35rem;
}

.panel-head code {
  color: var(--accent);
}

.form-placeholder,
.form-embed {
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  min-height: 24rem;
}

.form-placeholder {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 1rem;
  padding: 1.3rem;
}

.form-embed iframe {
  width: 100%;
  min-height: 24rem;
  border-radius: inherit;
  background: #111;
}

.footer {
  padding: 1.8rem 0 2.8rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  color: var(--text);
  font-weight: 700;
}

.footer-copy,
.footer-note {
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 150ms;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(6, 6, 5, 0.88);
  backdrop-filter: blur(10px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-inner {
  width: min(100%, 70rem);
  display: grid;
  gap: 1rem;
}

.lightbox-inner img {
  max-height: 78vh;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.lightbox-inner p {
  text-align: center;
  color: var(--muted-strong);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

@media (max-width: 1120px) {
  .hero-stage {
    min-height: 38rem;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .feature-shell,
  .contact-grid,
  .services-grid,
  .cred-grid,
  .feature-visuals {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
    padding-bottom: 7rem;
  }

  .hero-main-frame,
  .hero-inset-card,
  .hero-badge {
    position: relative;
    inset: auto;
  }

  .hero-main-frame {
    width: 100%;
  }

  .hero-inset-card {
    width: min(70%, 18rem);
    margin: -5rem 0 0 1rem;
  }

  .hero-badge {
    width: max-content;
    max-width: calc(100% - 1rem);
    margin: 1rem 0 0 auto;
  }

  .about-visuals {
    grid-template-columns: 1fr 0.88fr;
  }

  .gallery-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gallery-intro > p {
    margin-left: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: clamp(9rem, 22vw, 13rem);
  }

  .gallery-feature,
  .gallery-wide {
    grid-column: span 6;
    grid-row: span 2;
  }

  .gallery-tall,
  .gallery-medium,
  .gallery-small {
    grid-column: span 3;
    grid-row: span 2;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(12, 12, 11, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }

  .nav.is-open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.5rem 0;
  }

  .hero {
    padding-top: 2rem;
  }

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

  .button {
    width: 100%;
  }

  .about-visuals {
    grid-template-columns: 1fr;
  }

  .gallery-meta {
    gap: 0.45rem;
  }

  .gallery-meta span {
    font-size: 0.68rem;
    padding: 0.42rem 0.58rem;
  }

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

  .gallery-feature,
  .gallery-wide,
  .gallery-tall,
  .gallery-medium,
  .gallery-small {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-trigger {
    min-height: clamp(14rem, 78vw, 24rem);
  }

  .gallery-small .gallery-trigger {
    min-height: clamp(11rem, 52vw, 16rem);
  }

  .gallery-overlay strong {
    font-size: 1.35rem;
  }

  .small-card {
    margin-bottom: 0;
  }

  .hero-inset-card {
    width: min(78%, 16rem);
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.form-embed {
  overflow: hidden;
}

.form-embed iframe {
  display: block;
  width: 100%;
  height: 72rem;
  min-height: 48rem;
  border-radius: inherit;
  background: #111;
}

.panel-head p {
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .form-embed iframe {
    height: 72rem;
    min-height: 44rem;
  }
}