/* Mabelle Baklava — warm light bakery: cream × pistachio × honey */

:root {
  --bg-deep: #faf7f0;
  --bg-mid: #f3efe6;
  --bg-elevated: #ffffff;
  --marble-vein: rgba(44, 40, 37, 0.1);
  --text: #1e1c1a;
  --text-muted: #5a554d;
  --gold: #b8860b;
  --gold-dim: #8a6910;
  --pistachio: #2f6b3f;
  --pistachio-bright: #3d8a52;
  --honey: #a65f1a;
  --danger: #c43c3c;
  --radius: 14px;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --shadow: 0 20px 50px rgba(44, 40, 37, 0.1);
  --shadow-soft: 0 8px 30px rgba(44, 40, 37, 0.06);
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 100% 70% at 0% 0%, rgba(74, 143, 92, 0.09), transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 10%, rgba(212, 175, 55, 0.12), transparent 50%),
    linear-gradient(180deg, #fffefb 0%, var(--bg-deep) 35%, var(--bg-mid) 100%);
  min-height: 100vh;
}

a {
  color: var(--pistachio);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--honey);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--text);
  color: #fffefb;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  background: linear-gradient(180deg, rgba(255, 254, 251, 0.94) 0%, rgba(250, 247, 240, 0.9) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--marble-vein);
}

.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--marble-vein);
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
}

.nav-list {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-list a:hover {
  color: var(--text);
}

.nav-cta {
  background: linear-gradient(135deg, var(--pistachio) 0%, #245530 100%);
  color: #fffefb !important;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(47, 107, 63, 0.28);
}

.nav-cta:hover {
  filter: brightness(1.06);
  color: #fffefb !important;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav-list {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    padding: 1.25rem;
    background: rgba(255, 254, 251, 0.98);
    border-bottom: 1px solid var(--marble-vein);
    box-shadow: var(--shadow-soft);
    gap: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .nav-list.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  padding: clamp(2rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2.5rem) 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero-copy .tagline {
  color: var(--gold-dim);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.75rem;
}

.hero-copy p.lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 32ch;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--pistachio);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, #d4a84b 0%, var(--honey) 100%);
  color: #1a1208;
  box-shadow: 0 8px 28px rgba(184, 134, 11, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: #1a1208;
}

.btn-ghost {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--marble-vein);
  box-shadow: var(--shadow-soft);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-dim);
}

.hero-visual {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--marble-vein);
  aspect-ratio: 4 / 3;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 55%, rgba(250, 247, 240, 0.35) 100%);
  pointer-events: none;
}

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

.section {
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 2.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 2.25rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  max-width: 52ch;
}

.marble-panel {
  background: linear-gradient(145deg, #ffffff 0%, #faf8f4 100%);
  border: 1px solid var(--marble-vein);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow-soft);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.split img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--marble-vein);
}

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

.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  background: #eeeae3;
  border: 1px solid var(--marble-vein);
}

.gallery figure.wide {
  grid-column: span 6;
  aspect-ratio: 16 / 10;
}

.gallery figure.tall {
  grid-column: span 4;
  aspect-ratio: 3 / 4;
}

.gallery figure.span-8 {
  grid-column: span 8;
  aspect-ratio: 16 / 10;
}

.gallery figure.span-4 {
  grid-column: span 4;
}

@media (max-width: 700px) {
  .gallery figure,
  .gallery figure.wide,
  .gallery figure.tall,
  .gallery figure.span-8,
  .gallery figure.span-4 {
    grid-column: span 12;
    aspect-ratio: 4 / 3;
  }
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.gallery figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.78rem;
  background: linear-gradient(transparent, rgba(255, 254, 251, 0.95));
  color: var(--text-muted);
  font-weight: 500;
  border-top: 1px solid rgba(44, 40, 37, 0.06);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--marble-vein);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.card:hover {
  border-color: rgba(184, 134, 11, 0.35);
  box-shadow: 0 12px 36px rgba(44, 40, 37, 0.08);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--pistachio);
}

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

.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}

@media (max-width: 800px) {
  .visit-grid {
    grid-template-columns: 1fr;
  }
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.visit-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.visit-row strong {
  min-width: 5.5rem;
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--marble-vein);
  min-height: 280px;
  background: var(--bg-elevated);
  box-shadow: var(--shadow-soft);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

.site-footer {
  padding: 2.5rem clamp(1.25rem, 4vw, 2.5rem) 3rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  background: var(--bg-mid);
  border-top: 1px solid var(--marble-vein);
}

.site-footer .brand-small {
  font-family: var(--font-display);
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy .tagline,
.hero-copy h1,
.hero-copy .lead,
.hero-copy .hero-actions {
  animation: fade-up 0.8s ease backwards;
}

.hero-copy h1 {
  animation-delay: 0.06s;
}

.hero-copy .lead {
  animation-delay: 0.12s;
}

.hero-copy .hero-actions {
  animation-delay: 0.18s;
}
