/* ==========================================================
   Organized by Julianna: Option 1 (NEAT Method-inspired)
   Monochrome, airy, serif display headlines, uppercase CTAs.
   ========================================================== */

:root {
  --ink: #2f2f2f;          /* headings, dark bands */
  --text: #5f6266;         /* body copy */
  --muted: #8a8d91;        /* small labels */
  --line: #e4e4e4;
  --white: #ffffff;
  --off-1: #f9f9f9;        /* info band */
  --off-2: #f4f4f3;        /* reviews / alt sections */

  --font-display: "Bodoni Moda", "Didot", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --header-h: 64px;
  --max: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font: 400 16px/1.7 var(--font-body);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; color: var(--ink); line-height: 1.15; margin: 0; }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-block;
  padding: 16px 34px;
  font: 600 12px/1 var(--font-body);
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--ink); color: var(--white); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--white); color: var(--ink); border-color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }

.text-link {
  display: inline-block;
  font: 600 12px/1 var(--font-body);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
}
.text-link:hover { opacity: .6; }

.eyebrow {
  margin: 0 0 12px;
  font: 600 11px/1.4 var(--font-body);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.icon-btn { background: none; border: 0; padding: 8px; color: var(--ink); cursor: pointer; }
.menu-toggle { justify-self: start; display: flex; flex-direction: column; gap: 5px; }
.menu-toggle span { display: block; width: 20px; height: 1.5px; background: var(--ink); }
.header-phone {
  justify-self: end;
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
  font: 500 13px/1 var(--font-body);
  letter-spacing: .04em;
}

.logo { text-decoration: none; display: flex; flex-direction: column; align-items: center; line-height: 1; }
.logo-script {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: .01em;
}
.logo-sub {
  order: -1;
  font: 600 8.5px/1 var(--font-body);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

/* ---------- Drawer ---------- */
.drawer {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 70;
  width: min(340px, 86vw);
  background: var(--white);
  padding: 80px 36px 36px;
  display: flex; flex-direction: column; gap: 22px;
  transform: translateX(-100%);
  transition: transform .3s ease;
  box-shadow: 0 0 40px rgba(0,0,0,.08);
}
.drawer.open { transform: none; }
.drawer a {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  text-decoration: none;
}
.drawer a:hover { opacity: .6; }
.drawer .drawer-cta {
  margin-top: 12px;
  font: 600 12px/1 var(--font-body);
  letter-spacing: .14em; text-transform: uppercase;
  padding: 16px 20px; text-align: center;
  background: var(--ink); color: var(--white);
}
.drawer-close {
  position: absolute; top: 14px; left: 22px;
  background: none; border: 0; font-size: 34px; line-height: 1; color: var(--ink); cursor: pointer;
}
.drawer-backdrop { position: fixed; inset: 0; z-index: 60; background: rgba(0,0,0,.3); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: min(840px, 92vh);
  min-height: 520px;
  display: grid; place-items: center;
  overflow: hidden;
  background: #bcbdbf;
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,.5) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 820px;
  padding: 0 24px;
  text-align: center;
  color: var(--white);
}
.hero h1 { color: var(--white); font-size: clamp(38px, 6vw, 68px); margin-bottom: 22px; }
.hero p { max-width: 560px; margin: 0 auto 32px; font-size: 16px; color: rgba(255,255,255,.92); }

/* ---------- Info band ---------- */
.info-band { background: var(--off-1); padding: 88px 24px 96px; text-align: center; }
.info-card { max-width: 640px; margin: 0 auto 56px; }
.info-title { font-size: clamp(30px, 4vw, 40px); margin-bottom: 6px; }
.info-city { margin: 0 0 18px; font: 600 12px/1 var(--font-body); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.info-towns { margin: 0 0 18px; color: var(--text); }
.info-towns span { color: #c4c4c4; margin: 0 6px; }
.info-towns a { color: var(--ink); font-weight: 500; }
.info-phone { margin: 0 0 18px; }
.info-phone a { font-size: 18px; color: var(--ink); text-decoration: none; letter-spacing: .03em; }
.info-hours { list-style: none; margin: 0 auto 30px; padding: 0; max-width: 240px; font-size: 14px; }
.info-hours li { display: flex; justify-content: space-between; padding: 3px 0; }
.info-intro { max-width: 820px; margin: 0 auto; font-size: 17px; }

/* ---------- Section heads ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); }
.section-sub { margin: 14px 0 0; }

/* ---------- Services ---------- */
.services { padding: 104px 24px; max-width: var(--max); margin: 0 auto; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 96px;
}
.service-row:last-child { margin-bottom: 0; }
.service-row.reverse .service-img { order: 2; }
.service-img { aspect-ratio: 4 / 5; overflow: hidden; background: var(--off-2); }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-row:hover .service-img img { transform: scale(1.03); }
.service-copy h3 { font-size: clamp(28px, 3vw, 36px); margin-bottom: 18px; }
.service-copy p { margin: 0 0 22px; }
.service-list {
  list-style: none; padding: 0; margin: 0 0 30px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px;
  font-size: 14px; color: var(--ink);
}
.service-list li { padding-left: 16px; position: relative; }
.service-list li::before { content: ""; position: absolute; left: 0; top: .75em; width: 6px; height: 1px; background: var(--ink); }

/* ---------- Spaces ---------- */
.spaces { background: var(--off-1); padding: 104px 24px; }
.spaces-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.space { margin: 0; position: relative; aspect-ratio: 1; overflow: hidden; background: var(--off-2); }
.space img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.space:hover img { transform: scale(1.04); }
.space figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 20px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
}

/* ---------- Process ---------- */
.process { padding: 104px 24px; }
.steps {
  list-style: none; padding: 0; margin: 0 auto;
  max-width: var(--max);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  text-align: center;
}
.step-num { display: block; font-family: var(--font-display); font-size: 44px; color: #c9c9c9; margin-bottom: 10px; }
.steps h3 { font-size: 24px; margin-bottom: 12px; }
.steps p { margin: 0; }

/* ---------- Reviews ---------- */
.reviews { background: var(--off-2); padding: 96px 24px; }
.reviews .section-head { margin-bottom: 28px; }
.reviews-empty { max-width: 560px; margin: 0 auto; text-align: center; }
.reviews-empty p { margin: 0 0 26px; }
.reviews-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: var(--white); padding: 32px; }
.review-head { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.review-initials { width: 44px; height: 44px; border-radius: 50%; background: var(--off-2); display: grid; place-items: center; font-weight: 600; color: var(--ink); font-size: 13px; }
.review-name { margin: 0; color: var(--ink); font-weight: 600; }
.review-meta { margin: 0; font-size: 13px; color: var(--muted); }

/* ---------- Meet ---------- */
.meet { background: var(--ink); padding: 88px 24px 104px; text-align: center; }
.meet > h2 { color: var(--white); font-size: clamp(30px, 4vw, 44px); margin-bottom: 56px; }
.meet-card {
  max-width: 1100px; margin: 0 auto;
  background: var(--white);
  display: grid; grid-template-columns: 5fr 7fr;
  text-align: left;
}
.meet-photo { min-height: 460px; }
.photo-placeholder {
  height: 100%; min-height: 460px;
  background: linear-gradient(160deg, #ecebe8, #d9d8d4);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: #9a9994;
}
.photo-placeholder span { font-family: var(--font-display); font-style: italic; font-size: 120px; line-height: 1; color: #b5b4af; }
.photo-placeholder small { font: 600 11px/1 var(--font-body); letter-spacing: .2em; text-transform: uppercase; }
.meet-copy { padding: 56px 56px 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.meet-copy h3 { font-size: clamp(30px, 3.4vw, 40px); margin-bottom: 22px; }
.meet-bio { margin: 0 0 28px; font-size: 15px; line-height: 1.85; }
.meet-bio strong { color: var(--ink); font-weight: 600; letter-spacing: .02em; }
.meet-copy .text-link { align-self: flex-start; }

/* ---------- Areas ---------- */
.areas { padding: 104px 24px; }
.areas-list {
  list-style: none; padding: 0;
  max-width: 980px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.areas-list li {
  padding: 18px 8px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
}
.areas-note { text-align: center; margin: 36px 0 0; }
.areas-note a { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { background: var(--off-1); padding: 104px 24px; }
.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 24px 40px 24px 0;
  position: relative;
  font-family: var(--font-display); font-size: 21px; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-weight: 300; font-size: 26px; color: var(--ink);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 24px; max-width: 680px; }

/* ---------- Contact ---------- */
.contact { padding: 104px 24px; }
.contact-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 5fr 7fr; gap: 72px; align-items: start; }
.contact-copy h2 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 18px; }
.contact-copy > p { margin: 0 0 32px; }
.contact-direct { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.contact-direct li { padding: 16px 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 2px; color: var(--ink); overflow-wrap: anywhere; }
.contact-direct span { font: 600 11px/1.4 var(--font-body); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.contact-direct a { color: var(--ink); text-decoration: none; }

.contact-form { background: var(--off-1); padding: 44px; display: grid; gap: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label {
  display: grid; gap: 8px;
  font: 600 11px/1.4 var(--font-body); letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  font: 400 15px/1.5 var(--font-body);
  letter-spacing: normal; text-transform: none;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--ink); }
.contact-form .btn { justify-self: start; }
.form-note { margin: 0; font-size: 14px; min-height: 1.4em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 72px 24px 32px; }
.footer-inner {
  max-width: var(--max); margin: 0 auto 48px;
  display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 48px;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand .logo-script { color: var(--white); }
.footer-brand .logo-sub { order: -1; color: rgba(255,255,255,.55); }
.footer-brand p { margin: 16px 0 0; max-width: 300px; font-size: 14px; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-nav a, .footer-contact a { text-decoration: none; overflow-wrap: anywhere; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--white); }
.footer-legal { max-width: var(--max); margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; color: rgba(255,255,255,.5); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .service-row, .service-row.reverse { grid-template-columns: 1fr; gap: 32px; margin-bottom: 72px; }
  .service-row.reverse .service-img { order: 0; }
  .service-img { aspect-ratio: 4 / 3; }
  .spaces-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .meet-card { grid-template-columns: 1fr; }
  .meet-photo, .photo-placeholder { min-height: 320px; }
  .meet-copy { padding: 40px 28px; }
  .areas-list { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .header-phone-label { display: none; }
  .logo-script { font-size: 24px; }
  .info-band, .services, .spaces, .process, .areas, .faq, .contact { padding-top: 72px; padding-bottom: 72px; }
  .section-head { margin-bottom: 40px; }
  .service-list { grid-template-columns: 1fr; }
  .space figcaption { font-size: 17px; padding: 30px 12px 12px; }
  .areas-list li { font-size: 17px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .btn { padding: 15px 26px; }
}
