:root {
  --ink: #111111;
  --muted: #645f5d;
  --line: #e7dfdb;
  --paper: #fffaf7;
  --rose: #b95b69;
  --rose-dark: #863a46;
  --mint: #2c6b63;
  --gold: #b98a42;
  --cream: #f3ebe4;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(39, 26, 20, .16);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

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

svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(17, 17, 17, .08);
  background: rgba(255, 250, 247, .92);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 126px;
  height: 60px;
  object-fit: contain;
  background: var(--ink);
  padding: 9px 14px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 36px);
  font-size: .94rem;
  color: var(--muted);
}

.main-nav a {
  padding: 10px 0;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle,
.icon-link,
.book-link,
.primary-cta,
.secondary-cta,
.button-row a,
.cta-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--ink);
  padding: 0 18px;
  font-weight: 700;
  background: transparent;
  cursor: pointer;
}

.lang-toggle,
.icon-link {
  width: 44px;
  padding: 0;
}

.book-link,
.primary-cta,
.button-row a:first-child,
.cta-card a {
  border-color: var(--rose);
  background: var(--rose);
  color: var(--white);
}

.book-link:hover,
.primary-cta:hover,
.button-row a:first-child:hover,
.cta-card a:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  min-height: calc(100svh - 76px);
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: relative;
  min-height: 480px;
  background: var(--cream);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  padding: clamp(34px, 7vw, 86px);
}

.eyebrow {
  margin: 0;
  color: var(--mint);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: .86;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: .95;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 680px;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  color: #423c39;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-cta,
.secondary-cta {
  min-height: 56px;
  padding: 0 24px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 14px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-strip div {
  background: var(--white);
  padding: 18px;
}

.trust-strip dt {
  color: var(--muted);
  font-size: .75rem;
  text-transform: uppercase;
  font-weight: 800;
}

.trust-strip dd {
  margin: 6px 0 0;
  font-weight: 900;
}

.quick-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-panel a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 78px;
  padding: 14px;
  background: var(--white);
  font-weight: 800;
}

.quick-panel a:hover {
  color: var(--rose-dark);
}

.section {
  padding: clamp(56px, 8vw, 120px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.service-grid p {
  margin-bottom: 0;
}

.service-grid .cta-card {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.cta-card p {
  color: rgba(255, 255, 255, .76);
}

.bands {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  align-items: stretch;
  gap: 0;
  background: #ecf2ef;
  padding-top: 0;
  padding-bottom: 0;
}

.band-copy {
  align-self: center;
  padding: clamp(46px, 7vw, 94px) clamp(18px, 5vw, 72px) clamp(46px, 7vw, 94px) 0;
}

.band-image {
  min-height: 560px;
}

.band-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  margin-bottom: 24px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr 1.1fr;
  gap: 12px;
}

.gallery button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery img {
  width: 100%;
  height: clamp(260px, 40vw, 520px);
  object-fit: cover;
}

.gallery button:nth-child(2),
.gallery button:nth-child(3) {
  transform: translateY(36px);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .65fr);
  gap: 24px;
  background: var(--ink);
  color: var(--white);
}

.contact p {
  color: rgba(255, 255, 255, .72);
}

.contact-card {
  display: grid;
  gap: 1px;
  align-self: center;
  font-style: normal;
  background: rgba(255, 255, 255, .18);
}

.contact-card a {
  padding: 20px;
  background: #1f1f1f;
  font-weight: 800;
}

.contact-card a:hover {
  background: var(--rose-dark);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(17, 17, 17, .9);
  box-shadow: var(--shadow);
}

.sticky-cta a {
  min-width: 80px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  text-align: center;
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 17, 17, .88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 88vh;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox button {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: var(--white);
  color: var(--ink);
  font-size: 32px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero,
  .split,
  .bands,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 380px;
  }

  .band-copy {
    padding-right: 0;
  }

  .band-image {
    min-height: 360px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery button:nth-child(2),
  .gallery button:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 82px;
  }

  .site-header {
    min-height: 70px;
    padding: 10px 14px;
    gap: 12px;
  }

  .brand img {
    width: 104px;
    height: 50px;
  }

  .book-link {
    display: none;
  }

  .main-nav {
    font-size: .88rem;
  }

  .hero-media {
    min-height: 300px;
  }

  .hero-content {
    padding: 34px 18px 42px;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .hero-actions,
  .button-row {
    flex-direction: column;
  }

  .primary-cta,
  .secondary-cta,
  .button-row a,
  .cta-card a {
    width: 100%;
  }

  .trust-strip,
  .quick-panel,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 18px;
  }

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

  .gallery img {
    height: 380px;
  }

  .sticky-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .sticky-cta a {
    flex: 1;
    min-width: 0;
  }
}
