/* Design tokens (HSL) */
:root {
  --background: 0 0% 3%;
  --foreground: 210 40% 98%;
  --card: 0 0% 6%;
  --card-foreground: 210 40% 98%;
  --muted: 215 20% 65%;
  --border: 217 33% 18%;
  --brand: 46 62% 53%; /* Soft Gold */
  --brand-foreground: 222 84% 4%;
  --gradient-hero: linear-gradient(180deg, hsl(0 0% 6%), hsl(0 0% 0%));
  --shadow-elev: 0 10px 30px -10px hsl(var(--brand) / 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: hsl(var(--foreground));
  background: var(--gradient-hero);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }

.container { width: min(1120px, 100%); margin-inline: auto; padding: 0 1rem; }
.section { padding: 5rem 0; border-top: 1px solid hsl(var(--border)); }
.section-header { margin-bottom: 2rem; }
.section-header.between { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.section-title { font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.75rem, 2vw + 1rem, 2.25rem); margin: 0; }
.muted { color: hsl(var(--muted)); }
.small { font-size: 0.9rem; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(8px); background: hsl(var(--background) / 0.7); border-bottom: 1px solid hsl(var(--border)); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand-logo { height: 32px; width: auto; object-fit: contain; opacity: 0.95; }
.brand-name { font-family: "Playfair Display", Georgia, serif; font-size: 1.1rem; letter-spacing: 0.02em; }
.nav-links { display: none; gap: 1.25rem; align-items: center; }
.nav-links a { color: inherit; text-decoration: none; font-size: 0.95rem; }
.menu-toggle { display: inline-flex; font-size: 1.25rem; background: transparent; color: hsl(var(--foreground)); border: 1px solid hsl(var(--border)); padding: .4rem .55rem; border-radius: 8px; }
.mobile-menu { border-top: 1px solid hsl(var(--border)); padding: .5rem 1rem; display: grid; gap: .5rem; background: hsl(var(--background)); }

@media (min-width: 768px) {
  .menu-toggle { display: none; }
  .nav-links { display: inline-flex; }
  .mobile-menu { display: none !important; }
}

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; align-items: center; gap: 2.5rem; padding: 5rem 0; grid-template-columns: 1fr; }
.hero-title { font-family: "Playfair Display", Georgia, serif; font-weight: 700; line-height: 1.1; font-size: clamp(2rem, 3vw + 1rem, 3.5rem); margin: 0; max-width: 22ch; }
.hero-subtitle { margin-top: 1rem; max-width: 60ch; color: hsl(var(--muted)); }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; color: hsl(var(--muted)); font-size: .7rem; margin: 0 0 .75rem; }
.actions { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.timings { margin-top: 1rem; color: hsl(var(--muted)); }
.timings span { color: hsl(var(--foreground)); }
.hero-media { justify-self: center; }
.hero-logo { width: clamp(14rem, 12vw + 10rem, 20rem); opacity: .9; }

@media (min-width: 768px) { .hero-grid { grid-template-columns: 1fr 1fr; padding: 6.5rem 0; } }

/* Spotlight */
.spotlight { pointer-events: none; position: absolute; inset: 0; }
.spotlight::before {
  content: ""; position: absolute; inset: -20%;
  background: radial-gradient(400px 400px at var(--x,50%) var(--y,50%), hsl(var(--brand)/0.17), transparent 60%);
}

/* Cards & Grid */
.card { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 12px; padding: 1.25rem; box-shadow: var(--shadow-elev); }
.card-row { display: flex; gap: 1rem; align-items: flex-start; }
.card-title { margin: 0; font-weight: 600; font-size: 1.1rem; }
.avatar { width: 64px; height: 64px; border-radius: 999px; object-fit: cover; border: 1px solid hsl(var(--border)); }

.grid { display: grid; gap: 1.5rem; }
.grid.two { grid-template-columns: 1fr; }
.grid.three { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid.two { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid.three { grid-template-columns: repeat(3, 1fr); } }

/* Services */
.service-card { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 12px; padding: 1.25rem; transition: box-shadow .2s ease, transform .2s ease; }
.service-head { display: flex; align-items: center; gap: .9rem; }
.icon-wrap { height: 44px; width: 44px; border-radius: 10px; background: hsl(var(--brand) / 0.15); border: 1px solid hsl(var(--brand) / 0.3); display: grid; place-items: center; color: hsl(var(--brand)); font-weight: 700; }
.service-title { margin: 0; font-weight: 600; }

/* Buttons */
.btn { appearance: none; border: 1px solid transparent; border-radius: 10px; padding: .65rem 1rem; text-decoration: none; color: inherit; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-weight: 600; cursor: pointer; transition: transform .2s, background-color .2s, border-color .2s; }
.btn-brand { background: hsl(var(--brand)); color: hsl(var(--brand-foreground)); border-color: hsl(var(--brand)); }
.btn-brand:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-outline { background: transparent; color: hsl(var(--foreground)); border-color: hsl(var(--border)); }
.btn-outline:hover { background: hsl(var(--card)); }
.btn-hero { background: hsl(var(--foreground) / 0.08); color: hsl(var(--foreground)); border: 1px solid hsl(var(--foreground) / 0.2); }
.btn-hero:hover { background: hsl(var(--foreground) / 0.16); }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field input, .field select { height: 44px; border-radius: 10px; border: 1px solid hsl(var(--border)); background: hsl(var(--background)); color: hsl(var(--foreground)); padding: 0 .75rem; }
.label { font-size: .9rem; }
.end { align-self: end; }
@media (min-width: 768px) { .form-grid { grid-template-columns: repeat(2, 1fr); } .end { grid-column: span 2; justify-self: start; } }

/* Badge */
.badge { display: inline-flex; align-items: center; padding: .35rem .6rem; border-radius: 999px; border: 1px solid hsl(var(--brand) / 0.35); background: hsl(var(--brand) / 0.12); color: hsl(var(--brand-foreground)); font-weight: 600; font-size: .85rem; }

/* Testimonials */
.testimonials { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; }
.slides { position: relative; overflow: hidden; min-height: 160px; }
.slide { position: absolute; inset: 0; opacity: 0; transform: translateX(10%); transition: opacity .35s ease, transform .35s ease; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 12px; padding: 1.25rem; display: grid; align-content: center; }
.slide.active { opacity: 1; transform: translateX(0); }
.slide blockquote { margin: 0 0 .5rem; font-size: 1.05rem; }
.slider-btn { background: transparent; color: hsl(var(--foreground)); border: 1px solid hsl(var(--border)); height: 36px; width: 36px; border-radius: 8px; cursor: pointer; }

/* Contact */
.stack { display: grid; gap: 1rem; }
.stack-xs { display: grid; gap: .5rem; }
.row { display: flex; gap: .75rem; align-items: center; }
.gap { gap: 1rem; }
.map-wrap { border: 1px solid hsl(var(--border)); border-radius: 12px; overflow: hidden; min-height: 320px; }
.map { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* Footer */
.site-footer { border-top: 1px solid hsl(var(--border)); }
.footer-grid { padding: 1.25rem 0; display: flex; flex-direction: column; gap: .75rem; align-items: center; justify-content: space-between; }
@media (min-width: 768px) { .footer-grid { flex-direction: row; } }

/* Utilities */
.story-link { position: relative; display: inline-block; text-decoration: none; color: inherit; }
.story-link::after { content:""; position:absolute; left:0; bottom:-2px; width:100%; height:2px; background:hsl(var(--brand)); transform:scaleX(0); transform-origin:100% 100%; transition:transform .3s; }
.story-link:hover::after { transform:scaleX(1); transform-origin:0 100%; }
.hover-scale { transition: transform .2s; }
.hover-scale:hover { transform: scale(1.05); }

/* Animations */
@keyframes fade-in { 0% { opacity: 0; transform: translateY(10px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes scale-in { 0% { transform: scale(.95); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.animate-fade-in { animation: fade-in .35s ease-out both; }
.animate-scale-in { animation: scale-in .25s ease-out both; }

/* A11y */
.skip-link { position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { position: fixed; left: 1rem; top: 1rem; width: auto; height: auto; padding: .5rem .75rem; background: hsl(var(--foreground)); color: hsl(var(--brand-foreground)); border-radius: 8px; z-index: 999; }

.mobile-menu a { color: hsl(var(--foreground)); text-decoration: none; font-size: 1rem; padding: .5rem 0; }