/* ===== RE:SET — Carien ===== */
:root {
  --bg: #f7f3ec;
  --bg-alt: #efe8dc;
  --ink: #2f2a26;
  --ink-soft: #5a524b;
  --accent: #8a9a7b;
  --accent-dark: #6b7d5e;
  --accent-warm: #c89a6e;
  --line: #d9cfbe;
  --white: #ffffff;
  --shadow: 0 8px 30px rgba(45, 35, 25, 0.08);
  --radius: 4px;
  --maxw: 1180px;
  --serif: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

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

img { max-width: 100%; display: block; }
a { color: var(--accent-dark); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; color: var(--ink-soft); }

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

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; max-width: var(--maxw); margin: 0 auto;
}
.brand {
  font-family: var(--serif); font-size: 1.5rem; letter-spacing: 0.1em;
  color: var(--ink); font-weight: 300;
}
.brand:hover { color: var(--accent-dark); }
.nav-toggle {
  display: none; background: none; border: 0;
  font-size: 1.5rem; cursor: pointer; color: var(--ink);
}
.nav-links { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink); font-size: 0.92rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 0; border-bottom: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
  border-bottom-color: var(--accent); color: var(--accent-dark);
}

/* Buttons */
.btn {
  display: inline-block; padding: 14px 32px;
  font-family: var(--sans); font-size: 0.95rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; border-radius: var(--radius);
  border: 1px solid var(--ink); background: var(--ink);
  color: var(--bg); cursor: pointer; transition: all 0.25s ease;
}
.btn:hover {
  background: var(--accent-dark); border-color: var(--accent-dark);
  color: var(--white); transform: translateY(-1px);
}
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }

/* Hero */
.hero {
  padding: clamp(60px, 10vw, 120px) 0 clamp(60px, 8vw, 100px);
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: center;
}
.hero h1 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero p.lede {
  font-size: 1.15rem; color: var(--ink-soft);
  margin-bottom: 32px; max-width: 520px;
}
.hero-image {
  position: relative; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4 / 5; background: var(--bg-alt);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* Sections */
section { padding: clamp(60px, 9vw, 100px) 0; }
.section-alt { background: var(--bg-alt); }

.section-title {
  text-align: center; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 0.08em;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.section-eyebrow {
  display: block; text-align: center;
  font-family: var(--sans); font-size: 0.85rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 12px;
}
.section-lead {
  text-align: center; max-width: 680px;
  margin: 0 auto 60px; font-size: 1.05rem;
}

/* About */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 60px; align-items: center;
}
.about-image {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 4 / 5;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { text-transform: uppercase; letter-spacing: 0.06em; }
.about-text .sub {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 300;
  color: var(--accent-dark); margin-bottom: 24px; font-style: italic;
}

/* Services */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 4px 20px rgba(45, 35, 25, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 35, 25, 0.12);
}
.service-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-card-body { padding: 28px 24px 32px; }
.service-card h3 {
  margin-bottom: 12px; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 1.1rem;
}
.service-card p { font-size: 0.97rem; margin: 0; }

/* Testimonials */
.testimonials-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; max-width: 980px; margin: 0 auto;
}
.testimonial {
  background: var(--white); padding: 40px 36px;
  border-radius: var(--radius); box-shadow: var(--shadow);
  position: relative;
}
.testimonial::before {
  content: "\201C"; font-family: var(--serif);
  font-size: 5rem; color: var(--accent);
  position: absolute; top: -10px; left: 24px;
  line-height: 1; opacity: 0.5;
}
.testimonial-text {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 400;
  font-style: italic; line-height: 1.7;
  color: var(--ink); margin-bottom: 20px;
}
.testimonial-author {
  font-family: var(--sans); font-size: 0.9rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent-dark); font-weight: 500;
}

/* Contact */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: start;
}
.contact-info {
  background: var(--bg-alt); padding: 40px; border-radius: var(--radius);
}
.contact-info h3 {
  text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 1.05rem; margin-top: 24px;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info a { color: var(--ink); }
.contact-info a:hover { color: var(--accent-dark); }

form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label {
  display: block; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 8px;
}
input, textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--sans); font-size: 1rem;
  color: var(--ink); background: var(--white);
  transition: border-color 0.2s ease;
}
input:focus, textarea:focus { outline: none; border-color: var(--accent); }
textarea { min-height: 140px; resize: vertical; }

/* Booking */
.booking-wrap {
  background: var(--bg-alt); padding: clamp(40px, 6vw, 60px);
  border-radius: var(--radius); text-align: center;
}
.calendly-inline-widget { min-width: 320px; height: 700px; margin-top: 30px; }

/* Footer */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding: 50px 0 30px; text-align: center; font-size: 0.9rem;
}
.site-footer .brand-footer {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 300;
  letter-spacing: 0.15em; color: var(--white);
  margin-bottom: 14px; display: block;
}
.site-footer a { color: rgba(255,255,255,0.8); }
.site-footer a:hover { color: var(--white); }
.socials {
  display: flex; justify-content: center; gap: 18px;
  margin: 18px 0 24px; list-style: none; padding: 0;
}
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}
.socials a:hover {
  background: var(--white); color: var(--ink); border-color: var(--white);
}
.socials svg { width: 16px; height: 16px; fill: currentColor; }
.copyright { font-size: 0.82rem; opacity: 0.6; margin-top: 12px; }

/* Page head */
.page-head {
  padding: clamp(60px, 9vw, 100px) 0 clamp(40px, 6vw, 60px);
  text-align: center; background: var(--bg-alt);
}
.page-head h1 {
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px;
}
.page-head p { max-width: 640px; margin: 0 auto; font-size: 1.08rem; }

/* Form feedback */
.form-status {
  padding: 14px 16px; border-radius: var(--radius);
  background: #e9f0e2; color: var(--accent-dark);
  display: none; font-size: 0.95rem;
}
.form-status.show { display: block; }
.form-status.error { background: #f5e3e0; color: #8a3a2c; }

/* Responsive */
@media (max-width: 880px) {
  .hero-grid, .about-grid, .contact-grid,
  .services-grid, .testimonials-grid {
    grid-template-columns: 1fr; gap: 40px;
  }
  .services-grid { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--bg);
    padding: 20px 24px; gap: 16px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: all 0.25s ease;
  }
  .nav-links.open {
    transform: translateY(0); opacity: 1; pointer-events: auto;
  }
}
