:root {
  --header-bg: #FFFFFF;
  --page-bg: #FBF8F3;
  --footer-bg: #11191B;
  --text-main: #11191B;
  --text-muted: #6F6258;
  --text-light: #F7F2EA;
  --accent-gold: #B99A5B;
  --accent-dark: #7F682F;
  --border-soft: #E8DED2;
  --surface: #FFFFFF;
  --surface-warm: #F7F2EA;
  --shadow-soft: 0 18px 48px rgba(17, 25, 27, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text-main);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--text-main);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-dark);
}

:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 4px;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  background: var(--text-main);
  color: var(--text-light);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  background: var(--header-bg);
  color: var(--text-main);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
}

.brand img {
  width: 220px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.94rem;
}

.primary-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-main);
}

.primary-nav a[aria-current="page"],
.primary-nav a:hover {
  background: var(--surface-warm);
  color: var(--text-main);
}

.breadcrumb {
  width: min(var(--max), calc(100% - 32px));
  margin: 1rem auto 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  color: var(--accent-gold);
}

.breadcrumb a {
  color: var(--text-muted);
}

.hero {
  padding: clamp(2.5rem, 6vw, 5.5rem) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.25rem, 5.2vw, 5rem);
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.lead {
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  color: var(--text-muted);
  margin: 0 0 1.35rem;
}

.hero-media,
.cover-media,
.video-frame,
.card,
.gallery-item,
.contact-card,
.package-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-media img,
.cover-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  border: 1px solid transparent;
}

.button-primary {
  background: var(--text-main);
  color: var(--text-light);
}

.button-primary:hover {
  background: #263638;
  color: var(--text-light);
}

.button-secondary {
  background: var(--accent-gold);
  color: var(--text-main);
  border-color: var(--accent-gold);
}

.button-secondary:hover {
  background: #D1B56F;
  color: var(--text-main);
}

.button-quiet {
  background: transparent;
  border-color: var(--border-soft);
}

.section {
  padding: clamp(2.75rem, 6vw, 5rem) 0;
}

.section-tight {
  padding: clamp(1.75rem, 4vw, 3rem) 0;
}

.section-soft {
  background: var(--surface-warm);
  border-block: 1px solid var(--border-soft);
}

.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.contact-card,
.package-card {
  padding: 1.1rem;
}

.card:has(.card-image) {
  padding: 0;
}

.card-body {
  padding: 1.1rem;
}

.card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-warm);
}

.card .meta,
.meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 0.35rem;
}

.card p:last-child,
.contact-card p:last-child,
.package-card p:last-child {
  margin-bottom: 0;
}

.link-card {
  text-decoration: none;
  color: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.link-card:hover {
  color: inherit;
  transform: translateY(-3px);
  box-shadow: 0 22px 58px rgba(17, 25, 27, 0.12);
}

.list-check {
  padding-left: 1.1rem;
}

.list-check li {
  margin-bottom: 0.5rem;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery-item {
  padding: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.gallery-half {
  grid-column: span 6;
}

.video-frame {
  padding: 0.75rem;
}

.video-frame video {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 8px);
  background: #000;
}

.transcript {
  margin-top: 1rem;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1rem;
}

details summary {
  cursor: pointer;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
}

.faq-item summary {
  font-weight: 750;
}

.faq-answer p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.cta-band {
  background: var(--text-main);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  gap: 1rem;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
}

.cta-band h2,
.cta-band p {
  color: inherit;
}

.cta-band p {
  margin: 0;
  color: #D9D0C2;
}

.cta-band .button-primary {
  background: var(--accent-gold);
  color: var(--text-main);
}

.cta-band .button-secondary {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(247, 242, 234, 0.32);
}

.note {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.service-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: center;
}

.cover-section {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.cover-copy {
  max-width: 820px;
  margin-bottom: 1.5rem;
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.package-card .button {
  margin-top: auto;
  width: fit-content;
}

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

.site-footer {
  background: var(--footer-bg);
  color: var(--text-light);
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

.site-footer a {
  color: var(--text-light);
}

.site-footer a:hover,
.footer-accent {
  color: var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.7fr) minmax(220px, 0.8fr);
  gap: 2rem;
}

.footer-brand img {
  width: 220px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #D9D0C2;
  max-width: 52ch;
}

.footer-heading {
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(247, 242, 234, 0.16);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem 0;
  color: #D9D0C2;
  font-size: 0.95rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

@media (max-width: 940px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-grid,
  .service-intro,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4,
  .contact-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-wide,
  .gallery-tall,
  .gallery-half {
    grid-column: span 6;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .container,
  .breadcrumb {
    width: min(var(--max), calc(100% - 24px));
  }

  .brand img {
    width: 190px;
  }

  .primary-nav {
    width: 100%;
    gap: 0.15rem;
  }

  .primary-nav a {
    padding: 0.3rem 0.55rem;
    font-size: 0.9rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .contact-methods {
    grid-template-columns: 1fr;
  }

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

  .gallery-wide,
  .gallery-tall,
  .gallery-half {
    grid-column: auto;
  }

  .cta-row .button {
    width: 100%;
  }
}

.video-embed {
  aspect-ratio: 16 / 9;
  position: relative;
}

.video-embed iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.video-links,
.social-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1rem;
}

.video-links a,
.social-links-inline a {
  font-weight: 700;
}

.footer-social-heading {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: var(--accent-gold);
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.social-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-card-list li {
  margin-bottom: 0.5rem;
}
