/* ===== Design tokens ===== */
:root {
  --color-bg: #FBF8F3;
  --color-bg-alt: #F1EBE0;
  --color-ink: #2C2A26;
  --color-ink-soft: #5C5850;
  --color-sage: #6B7A5E;
  --color-sage-dark: #4F5C44;
  --color-terracotta: #C17A56;
  --color-line: #E2DACB;
  --color-white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', 'Segoe UI', sans-serif;

  --container-w: 1120px;
  --radius: 4px;
  --shadow-soft: 0 20px 50px -30px rgba(44, 42, 38, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-sage-dark);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; color: var(--color-ink); font-weight: 600; }

p { margin: 0 0 1em; color: var(--color-ink-soft); }

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

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--color-terracotta);
  font-weight: 500;
  margin-bottom: 0.9em;
}

.center { text-align: center; }
.lead { max-width: 620px; margin-left: auto; margin-right: auto; font-size: 1.08rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.btn-primary {
  background: var(--color-sage);
  color: var(--color-white);
  border: 1px solid var(--color-sage);
}
.btn-primary:hover { background: var(--color-sage-dark); border-color: var(--color-sage-dark); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--color-sage-dark);
  border: 1px solid var(--color-line);
}
.btn-ghost:hover { border-color: var(--color-sage); background: var(--color-white); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--color-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-sage-dark);
}
.brand-role {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-terracotta);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav a {
  font-size: 0.92rem;
  color: var(--color-ink-soft);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
.nav a:hover { color: var(--color-sage-dark); }

.nav-cta {
  background: var(--color-sage);
  color: var(--color-white) !important;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-weight: 500;
  transition: background 0.25s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--color-sage-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-sage-dark);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at 85% 15%, rgba(107,122,94,0.10), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(193,122,86,0.10), transparent 55%);
}
.hero-inner { max-width: 720px; }
.hero-lead { font-size: 1.15rem; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

/* ===== Sections ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--color-bg-alt); }

/* ===== Split layout ===== */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.split-reverse { grid-template-columns: 1.15fr 0.85fr; }
.split-reverse .split-content { order: 1; }
.split-reverse .split-media { order: 2; }

.portrait-frame {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.portrait-placeholder {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 600;
  color: var(--color-sage);
  background: linear-gradient(160deg, var(--color-bg-alt), var(--color-white));
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-frame {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
}

.credentials {
  list-style: none;
  margin: 28px 0 32px;
  padding: 0;
  display: grid;
  gap: 16px;
}
.credentials li {
  border-left: 2px solid var(--color-sage);
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.credentials-title { font-weight: 500; color: var(--color-ink); font-size: 0.96rem; }
.credentials-sub { font-size: 0.85rem; color: var(--color-ink-soft); }

/* ===== Cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.card-number {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-terracotta);
  margin-bottom: 12px;
}
.card p { margin-bottom: 0; }

/* ===== Info list (Studio) ===== */
.info-list { margin: 28px 0 32px; }
.info-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--color-line);
}
.info-row:last-child { border-bottom: 1px solid var(--color-line); }
.info-row dt {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-terracotta);
}
.info-row dd { margin: 0; color: var(--color-ink); }

/* ===== Booking widget section ===== */
.booking-widget {
  margin: 48px auto 0;
  max-width: 640px;
  display: flex;
  justify-content: center;
}

/* ===== Contacts ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  text-align: center;
}
.contact-item {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 32px 24px;
}
.contact-item h3 { margin-bottom: 10px; }
.contact-item p { margin: 0; }
.contact-item a:hover { color: var(--color-sage-dark); }

.privacy-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-ink-soft);
  margin-top: 40px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-sage-dark);
  color: rgba(255,255,255,0.85);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
}
.footer-inner p { color: inherit; margin: 0; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .split, .split-reverse {
    grid-template-columns: 1fr;
  }
  .split-reverse .split-content { order: 2; }
  .split-reverse .split-media { order: 1; }
  .portrait-frame, .map-frame { max-width: 420px; margin: 0 auto; }

  .cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }

  .site-header.nav-open .nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--color-line);
    gap: 18px;
  }
  .site-header.nav-open .nav-cta {
    align-self: stretch;
    text-align: center;
  }

  .hero { padding: 80px 0 64px; }
  .section { padding: 64px 0; }
}
