:root {
  --bg: #faf6f0;
  --bg-alt: #f1ebe0;
  --text: #2a2623;
  --muted: #6b6358;
  --accent: #8b3a2a;
  --accent-soft: #b56a55;
  --sage: #7a8471;
  --line: #e2d9c8;
  --radius: 4px;
  --maxw: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--accent); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-soft); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 246, 240, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
}
.site-nav { margin-left: auto; display: flex; gap: 1.5rem; }
.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.site-nav a:hover { color: var(--accent); }
.lang-toggle {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  font-family: inherit;
}
.lang-toggle:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 720px) {
  .site-nav { display: none; }
}

/* Hero */
.hero {
  padding: 6rem 1.5rem 5rem;
  background:
    linear-gradient(180deg, rgba(250,246,240,0) 0%, rgba(250,246,240,0.9) 100%),
    radial-gradient(circle at 20% 40%, rgba(139, 58, 42, 0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(122, 132, 113, 0.1), transparent 55%);
  text-align: center;
}
.hero-inner { max-width: 780px; margin: 0 auto; }
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--sage);
  margin-bottom: 1.2rem;
}
.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 620px;
  margin: 1rem auto 2rem;
}
.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.cta:hover { background: var(--accent-soft); color: #fff; }

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-lede { color: var(--muted); margin-bottom: 2rem; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
}

/* About */
.credentials {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}
.credentials li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}
.col-image { position: relative; aspect-ratio: 4 / 5; }
.col-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.image-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: var(--bg-alt);
  color: var(--muted);
  font-size: 0.85rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  background: var(--bg);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.2s, border-color 0.2s;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-soft);
}
.service-card h3 { color: var(--accent); }
.service-card p { color: var(--muted); font-size: 0.95rem; }
.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--text);
  margin-top: 1rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.gallery-item {
  aspect-ratio: 1;
  position: relative;
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.04); }

/* Contact */
.contact-details {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.contact-details li { padding: 0.5rem 0; color: var(--muted); }
.contact-details strong { color: var(--text); margin-right: 0.4rem; }

.booking-form {
  display: grid;
  gap: 1rem;
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.booking-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.booking-form button {
  justify-self: start;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s;
}
.booking-form button:hover { background: var(--accent-soft); }

/* Footer */
.site-footer {
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
}
