:root {
  --bg: #f6efe6;
  --bg-soft: #fffaf4;
  --surface: rgba(255, 252, 247, 0.94);
  --surface-soft: rgba(245, 236, 227, 0.92);
  --panel: #171210;
  --panel-soft: #2a1b16;
  --text: #211916;
  --text-soft: #6d6159;
  --text-inverse: #f8f1e8;
  --text-inverse-soft: #d6c7bb;
  --accent: #b56f40;
  --accent-soft: #e4bf9b;
  --accent-deep: #8e532d;
  --line: rgba(33, 25, 22, 0.08);
  --line-inverse: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(64, 38, 24, 0.12);
  --shadow-strong: 0 32px 90px rgba(33, 20, 12, 0.28);
  --radius-xl: 38px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(229, 191, 155, 0.48), transparent 24%),
    radial-gradient(circle at left top, rgba(181, 111, 64, 0.12), transparent 26%),
    linear-gradient(180deg, #fffaf4 0%, #f4ebdf 42%, #f8f1e8 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  filter: blur(26px);
  pointer-events: none;
  z-index: 0;
}

body::before {
  width: 20rem;
  height: 20rem;
  top: -6rem;
  right: -4rem;
  background: rgba(181, 111, 64, 0.12);
}

body::after {
  width: 18rem;
  height: 18rem;
  bottom: -5rem;
  left: -4rem;
  background: rgba(228, 191, 155, 0.18);
}

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

button {
  font: inherit;
}

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

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 4rem;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line-inverse);
  border-radius: 28px;
  background: linear-gradient(135deg, var(--panel) 0%, var(--panel-soft) 100%);
  box-shadow: var(--shadow-strong);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff8f1;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--text-inverse);
}

.brand-copy span {
  color: var(--text-inverse-soft);
  font-size: 0.82rem;
}

.nav {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-weight: 700;
}

.nav a {
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  color: var(--text-inverse-soft);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text-inverse);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav a:focus-visible,
.button:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button.solid {
  color: #fff8f1;
  background: linear-gradient(135deg, var(--accent) 0%, #cd8a55 100%);
  box-shadow: 0 16px 28px rgba(181, 111, 64, 0.24);
}

.button.ghost {
  color: var(--text-inverse);
  background: #19120f;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 24px rgba(14, 10, 8, 0.18);
}

.button.text {
  min-height: auto;
  padding-inline: 0;
  color: var(--accent-soft);
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1.4rem;
  padding: 2rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #171210 0%, #271915 43%, #56382b 132%);
  box-shadow: var(--shadow-strong);
}

.hero::before {
  content: "";
  position: absolute;
  width: 28rem;
  height: 28rem;
  top: -12rem;
  right: -4rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 191, 155, 0.3), transparent 62%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 20rem;
  height: 20rem;
  left: -6rem;
  bottom: -8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 66%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding: 1.4rem 1.2rem 1.4rem 1.4rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.intro-band h2,
.story-panel h2,
.focus-card h3,
.service-card h3,
.contact-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.04em;
}

.hero h1 {
  color: var(--text-inverse);
  font-size: clamp(3.8rem, 8vw, 6.6rem);
  line-height: 0.92;
  max-width: 8ch;
}

.hero-subtitle {
  margin: 0.5rem 0 0;
  color: var(--accent-soft);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lead {
  max-width: 38rem;
  margin: 1.35rem 0 0;
  color: var(--text-inverse-soft);
  line-height: 1.82;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 2.35rem 0 0;
  padding: 0;
}

.hero-stats li {
  padding: 1.1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid var(--line-inverse);
  background: rgba(255, 255, 255, 0.05);
}

.hero-stats strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  color: var(--text-inverse);
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-inverse-soft);
  line-height: 1.65;
}

.hero-visual {
  min-height: 39rem;
  display: grid;
  align-items: stretch;
}

.hero-photo-card {
  position: relative;
  min-height: 39rem;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 65px rgba(19, 12, 8, 0.28);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 9, 7, 0.04), rgba(13, 9, 7, 0.3));
  pointer-events: none;
}

.floating-card {
  position: absolute;
  left: -1rem;
  bottom: 2rem;
  width: min(18rem, 76%);
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.floating-card span {
  display: block;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  margin-top: 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.62rem;
  line-height: 1.04;
}

.intro-band,
.gallery-card,
.story-panel,
.focus-panel,
.contact-card,
.service-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.intro-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.8rem;
  padding: 2.15rem;
  background: linear-gradient(135deg, #1c1411 0%, #2d1e18 55%, #5b3b2d 140%);
}

.intro-band h2 {
  color: var(--text-inverse);
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 0.97;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.pill-row span {
  padding: 0.72rem 0.96rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line-inverse);
  color: var(--text-inverse);
  font-weight: 700;
}

.section {
  padding: 5.2rem 0 0;
}

.section-head {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  color: var(--text);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.97;
}

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

.service-card {
  padding: 1.55rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 236, 227, 0.94));
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 62px rgba(64, 38, 24, 0.16);
}

.service-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(251, 244, 237, 0.98), rgba(239, 224, 210, 0.96));
}

.service-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 249, 244, 0.98), rgba(244, 229, 216, 0.96));
}

.service-card:nth-child(4) {
  background: linear-gradient(180deg, rgba(250, 242, 233, 0.98), rgba(238, 221, 206, 0.96));
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  border-radius: 999px;
  background: #1b1411;
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-card h3,
.contact-card h3,
.focus-card h3 {
  margin-top: 1rem;
  font-size: 2rem;
  line-height: 0.98;
}

.service-card p,
.story-panel p,
.contact-card p,
.focus-card p,
.gallery-card figcaption {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.74;
}

.gallery-section {
  padding-top: 5.2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.2rem;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 62px rgba(64, 38, 24, 0.16);
}

.gallery-card.large {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
  transition: transform 480ms ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card.large img {
  min-height: 100%;
}

.gallery-card figcaption {
  padding: 1rem 1.1rem 1.15rem;
}

.signature-section {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 1.2rem;
  padding-top: 5.2rem;
}

.story-panel {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 234, 224, 0.96));
}

.story-panel h2 {
  color: var(--text);
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 0.98;
}

.story-panel p + p {
  margin-top: 1rem;
}

.focus-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 2rem;
  border-color: var(--line-inverse);
  background: linear-gradient(135deg, #171210 0%, #291915 54%, #5c3c2e 145%);
  box-shadow: var(--shadow-strong);
}

.focus-card {
  padding: 1.5rem;
  border: 1px solid var(--line-inverse);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.focus-card span {
  display: inline-flex;
  padding: 0.42rem 0.74rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.focus-card h3 {
  color: var(--text-inverse);
}

.focus-card p {
  color: var(--text-inverse-soft);
}

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

.contact-card {
  padding: 1.55rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 237, 228, 0.95));
}

.contact-card.accent {
  border-color: var(--line-inverse);
  background: linear-gradient(135deg, #201613 0%, #32201a 54%, #5c3b2d 145%);
  box-shadow: var(--shadow-strong);
}

.contact-card.accent h3,
.contact-card.accent p {
  color: var(--text-inverse);
}

.contact-card.accent p:last-child {
  color: var(--text-inverse-soft);
}

.contact-card .button {
  margin-top: 1rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.4rem 0 1rem;
  color: var(--text-soft);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid,
  .signature-section,
  .contact-grid,
  .intro-band,
  .hero {
    grid-template-columns: 1fr;
  }

  .pill-row {
    justify-content: flex-start;
  }

  .hero-visual {
    min-height: 32rem;
  }

  .hero-photo-card {
    min-height: 32rem;
  }
}

@media (max-width: 920px) {
  .topbar {
    grid-template-columns: 1fr;
    border-radius: 26px;
  }

  .nav {
    justify-content: flex-start;
  }

  .button.ghost {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 1rem, 100%);
  }

  .topbar,
  .hero,
  .intro-band,
  .story-panel,
  .focus-panel,
  .contact-card,
  .service-card {
    border-radius: 24px;
  }

  .button {
    width: 100%;
  }

  .hero-copy {
    padding: 0.4rem 0 0;
  }

  .hero-actions,
  .hero-stats,
  .service-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: grid;
  }

  .hero-visual,
  .hero-photo-card {
    min-height: 25rem;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .gallery-card.large {
    grid-row: auto;
  }

  .footer {
    flex-direction: column;
  }
}
