@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Cormorant+Garamond:wght@500;600;700&display=swap');

:root {
  --bg: #f4efe6;
  --surface: #fffaf2;
  --surface-strong: #f8f0df;
  --ink: #17181c;
  --muted: #5c605f;
  --line: rgba(23, 24, 28, 0.1);
  --brand: #b88846;
  --brand-deep: #8f6630;
  --accent: #10233f;
  --accent-soft: #1d3d69;
  --white: #ffffff;
  --success: #2b7f4f;
  --shadow: 0 24px 60px rgba(16, 35, 63, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(184, 136, 70, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(16, 35, 63, 0.08), transparent 22%),
    var(--bg);
}

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

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

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(244, 239, 230, 0.84);
  border-bottom: 1px solid rgba(23, 24, 28, 0.06);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--brand) 100%);
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  font-size: 0.8rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--accent);
}

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

.btn,
.btn-ghost,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn-ghost:hover,
.btn-outline:hover {
  transform: translateY(-1px);
}

.btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent) 0%, var(--brand-deep) 100%);
  box-shadow: 0 18px 40px rgba(16, 35, 63, 0.24);
}

.btn-ghost {
  color: var(--accent);
  background: rgba(16, 35, 63, 0.08);
}

.btn-outline {
  color: var(--accent);
  border: 1px solid rgba(16, 35, 63, 0.16);
  background: rgba(255, 255, 255, 0.45);
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--white);
  border-radius: 14px;
  color: var(--accent);
  box-shadow: var(--shadow);
}

.hero {
  padding: 54px 0 28px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(120deg, rgba(16, 35, 63, 0.9), rgba(16, 35, 63, 0.72)),
    url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: var(--white);
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: auto -10% -24% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(184, 136, 70, 0.24);
  filter: blur(10px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 62px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.headline {
  margin: 18px 0 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.4rem, 5.2vw, 5.5rem);
  line-height: 0.95;
}

.lead {
  margin: 0 0 28px;
  max-width: 630px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

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

.metric {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.metric strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.metric span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.hero-stack {
  display: grid;
  gap: 16px;
}

.spotlight-card,
.feature-card,
.card,
.quote-card,
.process-card,
.gallery-card,
.contact-card,
.booking-card,
.service-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.spotlight-card {
  padding: 24px;
  color: var(--ink);
}

.spotlight-card img {
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 18px;
}

.spotlight-card h3,
.section-title,
.subsection-title {
  font-family: 'Cormorant Garamond', serif;
}

.spotlight-card h3 {
  margin: 0 0 8px;
  font-size: 2rem;
  color: var(--accent);
}

.spotlight-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section {
  padding: 70px 0;
}

.section.compact {
  padding-top: 18px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-kicker {
  color: var(--brand-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.section-title {
  margin: 12px 0 0;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 0.98;
  color: var(--accent);
}

.section-copy {
  max-width: 540px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 22px;
}

.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));
}

.feature-card,
.service-card,
.process-card,
.quote-card,
.booking-card,
.contact-card {
  padding: 28px;
}

.feature-card span,
.service-card span,
.process-card span,
.contact-card span.label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(184, 136, 70, 0.14);
  color: var(--brand-deep);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.feature-card h3,
.service-card h3,
.process-card h3,
.quote-card h3,
.booking-card h3,
.contact-card h3 {
  margin: 0 0 12px;
  font-size: 1.32rem;
  color: var(--accent);
}

.feature-card p,
.service-card p,
.process-card p,
.quote-card p,
.booking-card p,
.contact-card p,
.copy-block p,
.service-list li,
.bullet-list li {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.band {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--surface-strong), rgba(255, 255, 255, 0.82));
  padding: 26px;
  box-shadow: inset 0 0 0 1px rgba(16, 35, 63, 0.06);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-item {
  padding: 12px 0;
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  color: var(--accent);
}

.stat-item span {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.photo-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

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

.photo-card .float-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  background: rgba(16, 35, 63, 0.82);
  color: var(--white);
}

.float-card strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.copy-block {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.subsection-title {
  margin: 0 0 16px;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--accent);
}

.bullet-list,
.service-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.bullet-list li,
.service-list li {
  position: relative;
  padding-left: 28px;
}

.bullet-list li::before,
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  overflow: hidden;
  position: relative;
  min-height: 270px;
}

.gallery-card.large {
  grid-column: span 7;
}

.gallery-card.tall {
  grid-column: span 5;
}

.gallery-card.medium {
  grid-column: span 4;
}

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

.gallery-card .overlay {
  position: absolute;
  inset: auto 16px 16px 16px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(16, 35, 63, 0.05), rgba(16, 35, 63, 0.92));
  color: var(--white);
}

.gallery-card .overlay strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.testimonial-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.quote-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 240, 223, 0.98));
}

.quote-card .quote-mark {
  font-size: 2.4rem;
  color: var(--brand-deep);
  line-height: 1;
  margin-bottom: 12px;
}

.quote-card footer {
  margin-top: 18px;
  color: var(--accent);
  font-weight: 700;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--accent) 0%, #243a57 55%, var(--brand-deep) 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 40px;
}

.cta-panel h2 {
  margin: 0 0 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 0.96;
}

.cta-panel p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.page-hero {
  padding: 42px 0 14px;
}

.page-banner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  background: linear-gradient(135deg, rgba(16, 35, 63, 0.96), rgba(143, 102, 48, 0.9));
  color: var(--white);
  box-shadow: var(--shadow);
}

.page-banner .copy {
  padding: 52px;
}

.page-banner h1 {
  margin: 12px 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 4vw, 4.2rem);
  line-height: 0.96;
}

.page-banner p {
  margin: 0;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

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

.contact-grid,
.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.panel-form {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(16, 35, 63, 0.1);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: #fffdf9;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(184, 136, 70, 0.25);
  border-color: rgba(184, 136, 70, 0.36);
}

.contact-stack,
.booking-stack {
  display: grid;
  gap: 18px;
}

.mini-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 22px 0 34px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 35, 63, 0.06);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.muted {
  color: var(--muted);
}

@media (max-width: 1024px) {
  .site-nav,
  .header-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-header.menu-open .site-nav,
  .site-header.menu-open .header-actions {
    display: flex;
    width: 100%;
  }

  .site-header.menu-open .header-inner {
    flex-wrap: wrap;
  }

  .site-header.menu-open .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 10px;
  }

  .site-header.menu-open .header-actions {
    padding-top: 6px;
  }

  .hero-grid,
  .split,
  .page-banner,
  .contact-grid,
  .booking-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .page-banner .copy {
    padding: 34px;
  }

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

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

  .gallery-card.large,
  .gallery-card.tall,
  .gallery-card.medium {
    grid-column: span 6;
  }
}

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

  .hero {
    padding-top: 24px;
  }

  .hero-grid,
  .page-banner .copy,
  .copy-block,
  .panel-form,
  .feature-card,
  .service-card,
  .quote-card,
  .process-card,
  .booking-card,
  .contact-card {
    padding: 24px;
  }

  .headline {
    font-size: 3rem;
  }

  .hero-metrics,
  .grid-2,
  .grid-3,
  .grid-4,
  .testimonial-strip,
  .stat-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card.large,
  .gallery-card.tall,
  .gallery-card.medium {
    grid-column: span 12;
  }

  .section {
    padding: 56px 0;
  }

  .section-header {
    align-items: start;
    flex-direction: column;
  }

  .footer-inner {
    align-items: flex-start;
  }
}
