:root {
  --bg: #f8f2e9;
  --bg-deep: #15382d;
  --surface: rgba(255, 250, 244, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --card: rgba(255, 248, 239, 0.92);
  --text: #24352e;
  --muted: #66756f;
  --line: rgba(36, 53, 46, 0.1);
  --primary: #1d4335;
  --primary-soft: #2b5a49;
  --accent: #c8a96b;
  --accent-soft: #ecd9b2;
  --champagne: #f4e8d5;
  --white: #fffdfa;
  --shadow: 0 24px 60px rgba(21, 56, 45, 0.12);
}

* {
   
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 169, 107, 0.22), transparent 28%),
    radial-gradient(circle at right 12%, rgba(29, 67, 53, 0.12), transparent 26%),
    linear-gradient(180deg, #fffaf5 0%, var(--bg) 100%);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
  cursor: pointer;
}

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

.page-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.page-glow-left {
  top: -140px;
  left: -120px;
  background: radial-gradient(circle, rgba(200, 169, 107, 0.34), transparent 68%);
}

.page-glow-right {
  right: -120px;
  top: 260px;
  background: radial-gradient(circle, rgba(29, 67, 53, 0.18), transparent 68%);
}

.announcement-bar,
.site-shell {
  position: relative;
  z-index: 1;
}

.announcement-bar {
  width: min(1240px, calc(100% - 32px));
  margin: 18px auto 0;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-soft) 100%);
  color: #f9f4ec;
  border-radius: 999px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(29, 67, 53, 0.2);
}

.announcement-bar p {
  margin: 0;
  font-size: 0.95rem;
}

.announcement-bar a {
  white-space: nowrap;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
}

.site-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 16px auto 40px;
}

.navbar,
.hero,
.intro-section,
.services,
.gallery-section,
.features,
.contact-band,
.location-section,
.faq,
.footer {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
}

.navbar {
  border-radius: 28px;
  padding: 18px 24px;
  display: grid;
  gap: 18px;
}

.navbar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.navbar-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(36, 53, 46, 0.1);
}

.brand,
h1,
h2,
h3,
h4,
.hero-card p,
.hero-photo figcaption p,
.hero-info-panel p,
.gallery-overlay p {
  font-family: "Cinzel", serif;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.brand span {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--primary);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
}

.nav-links,
.hero-actions,
.stacked-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.nav-spotlight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(29, 67, 53, 0.94) 0%, rgba(50, 89, 72, 0.94) 100%);
  color: #fffdfa;
  box-shadow: 0 14px 30px rgba(21, 56, 45, 0.16);
}

.nav-spotlight span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 250, 244, 0.78);
}

.nav-spotlight strong {
  font-size: 1rem;
  line-height: 1.3;
}

.nav-links a,
.ghost-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
  color: var(--primary);
  border-radius: 999px;
  padding: 12px 16px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-links a,
.ghost-btn,
.secondary-btn,
.primary-btn {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent) 0%, #b78f4d 100%);
  color: #fffdfa;
  box-shadow: 0 14px 30px rgba(183, 143, 77, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.nav-links a:hover,
.ghost-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
  background: var(--primary);
  color: #fffdfa;
  border-color: rgba(29, 67, 53, 0.2);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(183, 143, 77, 0.34);
  filter: brightness(1.02);
}

.hero,
.intro-section,
.services,
.gallery-section,
.features,
.location-section,
.faq,
.footer {
  margin-top: 22px;
  border-radius: 36px;
}

.hero {
  padding: 34px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  overflow: hidden;
}

.eyebrow,
.section-heading p,
.feature-story > p,
.hero-card p,
.hero-photo figcaption p,
.hero-info-panel p,
.gallery-overlay p {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 700;
}

h1 {
  margin: 18px 0 16px;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1;
  max-width: 12ch;
  color: var(--primary);
}

.hero-text,
.intro-grid p,
.service-card p,
.feature-story p:last-child,
.feature-points p,
.location-details p,
.faq-list p,
.footer p,
.hero-metrics span,
.section-note {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

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

.hero-metrics li,
.intro-grid article,
.service-card,
.feature-points article,
.location-details article,
.faq-list details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.hero-metrics li {
  padding: 18px;
}

.hero-metrics strong,
.intro-grid h3,
.service-card h3,
.feature-points h3,
.location-details h3,
.faq summary,
.contact-band h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
  color: var(--primary);
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-photo,
.gallery-photo {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  min-height: 220px;
  box-shadow: 0 24px 40px rgba(21, 56, 45, 0.16);
  background: #dfe6df;
}

.hero-photo img,
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo::after,
.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 14, 0.02) 18%, rgba(8, 17, 14, 0.7) 100%);
}

.hero-photo figcaption,
.gallery-overlay {
  position: relative;
  z-index: 1;
  color: #fffdf9;
  padding: 24px;
}

.hero-photo figcaption {
  position: absolute;
  inset: auto 0 0;
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0;
}

.hero-photo-feature {
  min-height: 330px;
}

.hero-photo-feature h2 {
  margin: 10px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.1;
  max-width: 12ch;
}

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

.hero-photo-tall {
  grid-row: span 2;
  min-height: 430px;
}

.hero-photo-small {
  min-height: 205px;
}

.hero-photo-tall h3,
.hero-photo-small h3,
.gallery-overlay h3 {
  margin: 10px 0 0;
  line-height: 1.2;
}

.hero-info-panel {
  min-height: 205px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 30px;
  color: #fffdfa;
  background:
    linear-gradient(180deg, rgba(10, 18, 15, 0.08), rgba(10, 18, 15, 0.62)),
    linear-gradient(145deg, #1d4335 0%, #355f4e 50%, #b99659 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 40px rgba(21, 56, 45, 0.16);
}

.hero-info-panel p {
  color: #f2dcc0;
}

.hero-info-panel h3 {
  margin: 10px 0 0;
  color: inherit;
  line-height: 1.35;
  font-size: 1.35rem;
}

.hero-grid,
.gallery-grid,
.intro-grid,
.service-grid,
.feature-points,
.location-grid {
  display: grid;
  gap: 18px;
}

.intro-section,
.services,
.gallery-section,
.features,
.location-section,
.faq {
  padding: 32px;
}

.section-heading,
.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.section-heading h2,
.feature-story h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--primary);
  max-width: 15ch;
}

.section-note {
  max-width: 34ch;
}

.intro-grid {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intro-grid article,
.service-card,
.feature-points article,
.location-details article {
  padding: 24px;
}

.services {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.86) 0%, rgba(246, 238, 225, 0.95) 100%);
}

.service-grid {
  margin-top: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-showcase {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-photo {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 280px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 27, 21, 0.08) 15%, rgba(12, 27, 21, 0.76) 100%);
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-photo figcaption {
  position: absolute;
  inset: auto 20px 20px 20px;
  z-index: 1;
  color: #fff8f0;
}

.service-photo figcaption p {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: rgba(255, 248, 240, 0.82);
}

.service-photo figcaption h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #ffffff;
}

.photo-gallery {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "photo1 photo2 photo3"
    "photo1 photo4 photo4";
  align-items: stretch;
}

.gallery-photo {
  min-height: 250px;
}

.photo-1 {
  grid-area: photo1;
  min-height: 520px;
}

.photo-2 {
  grid-area: photo2;
}

.photo-3 {
  grid-area: photo3;
}

.photo-4 {
  grid-area: photo4;
}

.gallery-overlay h3 {
  font-size: 1.4rem;
  max-width: 15ch;
}

.features {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(29, 67, 53, 0.97) 0%, rgba(52, 92, 74, 0.94) 52%, rgba(200, 169, 107, 0.88) 100%);
  color: #fffdf9;
}

.features .feature-story > p,
.features .feature-points h3,
.features .feature-points p,
.features .feature-story h2,
.features .feature-story p:last-child {
  color: inherit;
}

.features .feature-story > p {
  color: #f2dcc0;
}

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

.feature-points article {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-band {
  margin-top: 22px;
  border-radius: 28px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: linear-gradient(90deg, rgba(29, 67, 53, 0.08) 0%, rgba(200, 169, 107, 0.18) 100%);
}

.contact-band article {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

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

.location-grid {
  margin-top: 24px;
  grid-template-columns: 1.08fr 0.92fr;
}

.map-card {
  min-height: 460px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-details {
  display: grid;
  gap: 18px;
}

.wide {
  width: 100%;
}

.stacked-actions {
  margin-top: 16px;
  flex-direction: column;
}

.faq-list {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
}

.faq summary {
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.footer {
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 10px;
}

.footer h4 {
  margin-bottom: 10px;
  color: var(--primary);
}

.footer p {
  margin: 0 0 10px;
}

@media (max-width: 1100px) {
  .navbar-panel {
    grid-template-columns: 1fr;
  }

  .hero,
  .features,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .feature-points,
  .contact-band,
  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-showcase {
    grid-template-columns: 1fr;
  }

  .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "photo1 photo1"
      "photo2 photo3"
      "photo4 photo4";
  }
}

@media (max-width: 780px) {
  .announcement-bar,
  .site-shell {
    width: min(100% - 20px, 1000px);
  }

  .announcement-bar {
    border-radius: 24px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .navbar,
  .hero,
  .intro-section,
  .services,
  .gallery-section,
  .features,
  .contact-band,
  .location-section,
  .faq,
  .footer {
    border-radius: 24px;
  }

  .navbar {
    grid-template-columns: 1fr auto;
    padding: 18px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .navbar-panel {
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 14px;
  }

  .navbar-panel.open {
    display: grid;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links a,
  .nav-spotlight,
  .ghost-btn,
  .secondary-btn,
  .primary-btn {
    width: 100%;
    justify-content: center;
  }

  .nav-spotlight {
    min-width: 0;
    align-items: center;
    text-align: center;
  }

  .hero,
  .intro-section,
  .services,
  .gallery-section,
  .features,
  .location-section,
  .faq,
  .footer {
    padding: 22px;
  }

  .hero-actions,
  .hero-metrics,
  .intro-grid,
  .service-grid,
  .gallery-grid,
  .feature-points,
  .contact-band,
  .location-grid,
  .footer,
  .stacked-actions,
  .section-heading,
  .section-heading-row {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .stacked-actions,
  .section-heading,
  .section-heading-row {
    display: grid;
    align-items: stretch;
  }

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

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

  .hero-photo-tall {
    grid-row: span 1;
    min-height: 260px;
  }

  .hero-metrics,
  .intro-grid,
  .service-grid,
  .feature-points,
  .contact-band,
  .footer {
    display: grid;
  }

  .photo-gallery {
    display: grid;
    grid-template-areas:
      "photo1"
      "photo2"
      "photo3"
      "photo4";
  }

  .photo-1 {
    min-height: 340px;
  }

  .map-card {
    min-height: 320px;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .section-heading h2,
  .feature-story h2,
  .hero-card-main h2,
  .gallery-overlay h3 {
    max-width: none;
  }
}
