:root {
  --bg: #f7f2ec;
  --bg-deep: #efe6dc;
  --ink: #2a2328;
  --ink-soft: #5c524f;
  --muted: #7a6f6a;
  --lavender: #8d7398;
  --lavender-deep: #5c4a6b;
  --lavender-soft: #d8c6df;
  --champagne: #c6a77a;
  --champagne-soft: #e8d6b8;
  --white: #fffdfb;
  --glass: rgba(255, 253, 251, 0.62);
  --glass-border: rgba(255, 255, 255, 0.55);
  --shadow: 0 18px 50px rgba(42, 35, 40, 0.1);
  --shadow-soft: 0 10px 30px rgba(92, 74, 107, 0.12);
  --radius: 1.35rem;
  --radius-sm: 0.9rem;
  --header-h: 4.5rem;
  --claim-h: 2.6rem;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--claim-h) + var(--header-h) + 0.75rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(216, 198, 223, 0.55), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(230, 214, 184, 0.45), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--lavender-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ink);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

address {
  font-style: normal;
}

.container {
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 2rem, 46rem);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}

.skip-link:focus {
  top: calc(var(--claim-h) + 0.5rem);
}

/* Claim bar — fixed */
.claim-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  min-height: var(--claim-h);
  display: grid;
  place-items: center;
  background: linear-gradient(90deg, #3f3348, var(--lavender-deep) 45%, #6d5678);
  color: #f8f1ef;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 18px rgba(42, 35, 40, 0.2);
}

.claim-bar p {
  margin: 0;
  color: inherit;
  padding: 0.55rem 1rem;
  text-align: center;
}

.claim-cta {
  display: inline-flex;
  align-items: center;
  margin-inline-start: 0.55rem;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  background: var(--champagne);
  color: #2a2328;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.claim-cta:hover {
  transform: translateY(-1px);
  background: var(--champagne-soft);
  color: #2a2328;
}

/* Header */
.site-header {
  position: sticky;
  top: var(--claim-h);
  z-index: 80;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(247, 242, 236, 0.78);
  border-bottom: 1px solid rgba(92, 74, 107, 0.08);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #f4e8f7, var(--lavender) 45%, var(--lavender-deep));
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35), var(--shadow-soft);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--lavender-deep);
}

.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(92, 74, 107, 0.18);
  border-radius: 0.8rem;
  background: rgba(255, 253, 251, 0.7);
  padding: 0.7rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.nav-toggle span + span {
  margin-top: 0.4rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 1px;
  background: var(--lavender);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--lavender-deep), #7a6288);
  color: #fff;
  box-shadow: 0 12px 28px rgba(92, 74, 107, 0.28);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 16px 34px rgba(92, 74, 107, 0.34);
}

.btn-secondary {
  background: var(--white);
  color: var(--lavender-deep);
  border-color: rgba(92, 74, 107, 0.16);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  background: rgba(255, 253, 251, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 253, 251, 0.28);
  color: #fff;
}

.btn-sm {
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--claim-h));
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s var(--ease) infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(30, 22, 34, 0.28) 0%, rgba(30, 22, 34, 0.42) 40%, rgba(24, 18, 28, 0.86) 100%),
    linear-gradient(90deg, rgba(42, 30, 48, 0.45), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 4.5rem;
  max-width: 48rem;
  margin-left: max(1rem, calc((100% - 72rem) / 2));
  margin-right: auto;
  width: min(100% - 2rem, 48rem);
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne-soft);
}

.hero-title {
  font-size: clamp(3rem, 9vw, 5.6rem);
  color: #fff;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.hero-title-amp {
  display: inline-block;
  font-style: italic;
  font-weight: 500;
  color: var(--lavender-soft);
}

.hero-title-ar {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.55em;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.88);
}

.hero-lead {
  max-width: 34rem;
  font-size: 1.08rem;
  color: rgba(255, 248, 244, 0.88);
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-meta dt {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0.25rem;
}

.hero-meta dd {
  margin: 0;
  font-weight: 500;
  color: #fff;
}

.hero-meta a {
  color: #fff;
  text-decoration: none;
}

.hero-meta a:hover {
  color: var(--champagne-soft);
}

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-heading {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lavender);
}

.eyebrow.light {
  color: var(--champagne-soft);
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--ink);
}

.section-lead {
  font-size: 1.05rem;
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.fact-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.fact-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink-soft);
}

.fact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender), var(--champagne));
}

.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.about-panel {
  border-radius: var(--radius);
  padding: 1.75rem;
}

.about-panel h3 {
  font-size: 1.8rem;
}

.about-panel ul {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.about-panel li {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(92, 74, 107, 0.1);
}

.about-panel li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about-panel span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-panel strong {
  font-weight: 600;
  color: var(--ink);
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.info-card,
.landmark-card {
  border-radius: var(--radius);
  padding: 1.6rem;
  background: rgba(255, 253, 251, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.info-card:hover,
.landmark-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.info-card h3,
.landmark-card h3 {
  font-size: 1.55rem;
  color: var(--lavender-deep);
}

.media-frame {
  margin: 0;
  border-radius: calc(var(--radius) + 0.35rem);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.media-frame:hover img {
  transform: scale(1.06);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.pill-row span {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(141, 115, 152, 0.12);
  color: var(--lavender-deep);
  font-size: 0.88rem;
  font-weight: 500;
}

.landmark-grid {
  display: grid;
  gap: 1.25rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 251, 0.8);
  border: 1px solid rgba(92, 74, 107, 0.1);
  padding: 0.35rem 1.1rem;
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--ink);
  padding: 1rem 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--lavender);
  font-weight: 500;
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1rem;
  padding-bottom: 0.35rem;
}

.contact-layout {
  display: grid;
  gap: 1.25rem;
}

.contact-card {
  border-radius: var(--radius);
  padding: 1.8rem;
}

.contact-card h3 {
  font-size: 1.9rem;
  margin-bottom: 1.25rem;
}

.contact-card address p {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.contact-card span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 22rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 0;
  filter: saturate(0.92) contrast(1.02);
}

.cta-final {
  padding-top: 2rem;
}

.cta-panel {
  border-radius: calc(var(--radius) + 0.4rem);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  background:
    linear-gradient(135deg, rgba(63, 51, 72, 0.94), rgba(92, 74, 107, 0.9)),
    url("https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?auto=format&fit=crop&w=1600&q=70") center/cover;
  color: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-panel h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.3rem);
  max-width: 18ch;
  margin-inline: auto;
}

.cta-panel p {
  color: rgba(255, 248, 244, 0.86);
  max-width: 40rem;
  margin-inline: auto;
}

.cta-panel .hero-actions {
  justify-content: center;
  margin-bottom: 0;
  margin-top: 1.75rem;
}

.cta-panel .btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1.25rem 0 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: rgba(92, 74, 107, 0.35);
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--lavender-deep);
}

/* Footer */
.site-footer {
  padding: 3.5rem 0 2rem;
  background: #2a2328;
  color: rgba(255, 248, 244, 0.78);
}

.site-footer a {
  color: rgba(255, 248, 244, 0.86);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--champagne-soft);
}

.site-footer h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.site-footer p {
  color: rgba(255, 248, 244, 0.7);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-grid ul {
  display: grid;
  gap: 0.55rem;
}

.footer-brand {
  margin-bottom: 0.85rem;
}

.footer-brand .brand-name,
.footer-brand .brand-sub {
  color: #fff;
}

.footer-brand .brand-sub {
  color: rgba(255, 248, 244, 0.65);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 0.5rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-note {
  opacity: 0.72;
  font-size: 0.8rem !important;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card-grid .reveal:nth-child(2),
.landmark-grid .reveal:nth-child(2),
.faq-list .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.card-grid .reveal:nth-child(3),
.landmark-grid .reveal:nth-child(3),
.faq-list .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.card-grid .reveal:nth-child(4),
.landmark-grid .reveal:nth-child(4),
.faq-list .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.faq-list .reveal:nth-child(5) {
  transition-delay: 0.32s;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-image,
  .media-frame img,
  .btn,
  .info-card,
  .landmark-card {
    animation: none !important;
    transition: none !important;
  }
}

/* Responsive */
@media (min-width: 720px) {
  .header-cta {
    display: inline-flex;
  }

  .card-grid,
  .landmark-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }

  .split.reverse {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .split.reverse .experience-visual {
    order: 0;
  }

  .split.reverse .section-copy {
    order: 1;
  }

  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-grid;
    align-content: center;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    width: min(18rem, calc(100vw - 2rem));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem;
    border-radius: 1rem;
    background: rgba(255, 253, 251, 0.95);
    border: 1px solid rgba(92, 74, 107, 0.1);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 0.85rem 0.9rem;
    border-radius: 0.75rem;
  }

  .nav-menu a:hover {
    background: rgba(141, 115, 152, 0.1);
  }

  .nav {
    position: relative;
    margin-left: auto;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding-top: 6rem;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .contact-actions .btn,
  .cta-panel .btn {
    width: 100%;
  }
}
