/* =========================================================
   One-on-One Clarity Call
   Palette and typography preserved from the previous version.
   Layout: CSS Grid + Flexbox, fluid type via clamp(),
   three content-driven breakpoints (560 / 760 / 1100).
   ========================================================= */

:root {
  --paper:    #fbf8f5;
  --paper-2:  #f3ede7;
  --ink:      #16181d;
  --ink-soft: #555b63;   /* 6.6:1 on --paper */
  --navy:     #16233a;
  --accent:   #a44f33;   /* 4.8:1 on --paper, used for text + buttons */
  --accent-2: #8a3f27;
  --sand:     #e0a68d;   /* accent on dark backgrounds */
  --line:     #e3dbd3;
  --white:    #ffffff;

  --font-title: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(22, 35, 58, .06);
  --shadow-lg: 0 24px 60px -30px rgba(22, 35, 58, .32);

  /* Fluid rhythm */
  --gap-section: clamp(56px, 8vw, 104px);
  --gap-side:    clamp(20px, 5vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(16px, 0.42vw + 14.7px, 17.5px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* safety net: nothing should ever exceed the viewport */
}

img, svg, iframe { display: block; max-width: 100%; }
img { width: 100%; height: auto; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--white);
  border-radius: 999px;
  font-size: .9rem;
  text-decoration: none;
}
.skip-link:focus { left: 12px; }

/* ---------- Layout containers ---------- */
.wrap {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: var(--gap-side);
}
/* Text-led blocks stay at a readable measure on any screen width. */
.wrap-text { max-width: 760px; }

/* ---------- Typography ---------- */
h1, h2 {
  font-family: var(--font-title);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(1.85rem, 3.6vw + 0.7rem, 3rem); }
h1 em { font-style: italic; color: var(--accent); }

h2 {
  font-size: clamp(1.45rem, 1.6vw + 1rem, 2.05rem);
  margin-bottom: clamp(18px, 2.4vw, 26px);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-dark .eyebrow { color: var(--sand); }

.lede {
  margin: 0;
  font-size: clamp(1.02rem, 0.5vw + 0.9rem, 1.16rem);
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 58ch;
}
.section-dark .lede { color: rgba(255, 255, 255, .78); }

.meta {
  margin: clamp(20px, 3vw, 28px) 0 0;
  font-size: .95rem;
  font-weight: 500;
}

.muted { color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;              /* comfortably above the 44px target */
  padding: 13px 30px;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: .97rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, transform .18s ease;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 26px -16px rgba(164, 79, 51, .95);
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn-primary:active { transform: none; }
.btn-block { display: flex; width: 100%; }

.hero .btn { margin-top: clamp(20px, 3vw, 26px); }

/* ---------- Sections ---------- */
.hero {
  padding-block: clamp(64px, 11vw, 128px) clamp(52px, 8vw, 92px);
  background:
    radial-gradient(900px 460px at 78% -10%, rgba(164, 79, 51, .10), transparent 62%),
    radial-gradient(700px 420px at 2% 6%, rgba(22, 35, 58, .06), transparent 58%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.hero h1 { margin-bottom: clamp(16px, 2.4vw, 22px); }

.section { padding-block: var(--gap-section); }
.section-soft { background: var(--paper-2); }
.section-dark {
  background: var(--navy);
  color: rgba(255, 255, 255, .92);
}
.section-dark h2 { color: var(--white); }

/* ---------- Situations ---------- */
.rule-list li {
  position: relative;
  padding: clamp(14px, 2vw, 17px) 0 clamp(14px, 2vw, 17px) 34px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1rem, 0.3vw + 0.95rem, 1.06rem);
  line-height: 1.5;
}
.rule-list li:first-child { border-top: 1px solid var(--line); }
.rule-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: calc(clamp(14px, 2vw, 17px) + 0.55em);
  width: 13px; height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---------- Steps (compact editorial list) ---------- */
.steps {
  margin-top: clamp(26px, 4vw, 36px);
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.steps li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  font-size: clamp(.98rem, 0.3vw + 0.92rem, 1.04rem);
  line-height: 1.45;
}
.step-n {
  flex: none;
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: var(--sand);
  min-width: 1ch;
}

/* ---------- About ---------- */
.about {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
/* On small screens the portrait sits above the text, at a modest size. */
.portrait { margin: 0; max-width: 260px; }
.portrait img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  background: var(--paper-2);
  aspect-ratio: 4 / 5;
  object-fit: cover;      /* fills the card without ever stretching the photo */
  object-position: center 32%;  /* keeps the face in frame when the crop bites */
}
.about-text p {
  margin: 0 0 16px;
  max-width: 540px;                    /* ~66 characters: comfortable line length */
  font-size: clamp(1.02rem, 0.4vw + 0.94rem, 1.12rem);
  line-height: 1.68;
}
.about-text p:last-child { margin-bottom: 0; }

@media (min-width: 760px) {
  .about { grid-template-columns: minmax(220px, 320px) 1fr; }
  .portrait { max-width: none; }
}

/* ---------- Offer ---------- */
.offer-card {
  display: grid;
  margin-top: clamp(22px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.includes { padding: clamp(24px, 4vw, 32px); }
.includes li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 1rem;
  border-bottom: 1px dashed var(--line);
}
.includes li:last-child { border-bottom: 0; }
.includes li::before {
  content: "";
  position: absolute;
  left: 2px; top: .95em;
  width: 13px; height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.offer-action {
  padding: clamp(24px, 4vw, 32px);
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.price {
  margin: 0 0 18px;
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 4vw, 3rem);
  line-height: 1;
}
.fine {
  margin: 14px 0 0;
  font-size: .84rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

@media (min-width: 760px) {
  .offer-card { grid-template-columns: 1.05fr .95fr; }
  .offer-action { border-top: 0; border-left: 1px solid var(--line); }
}

.notice {
  margin: clamp(22px, 3vw, 28px) 0 0;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .55);
  font-size: .86rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- Booking embed ---------- */
.booking-embed:not([hidden]) {
  margin-top: clamp(22px, 3vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.booking-embed iframe {
  width: 100%;
  /* Tall enough that the provider's widget scrolls the page, not itself. */
  height: clamp(760px, 105vh, 980px);
  border: 0;
}

/* ---------- Contact + policy (quiet closing section) ---------- */
.section-fine {
  padding-block: clamp(40px, 6vw, 68px);
  border-top: 1px solid var(--line);
}
.fine-block {
  display: grid;
  gap: 6px;
  padding-block: clamp(18px, 2.5vw, 22px);
}
.fine-block + .fine-block { border-top: 1px solid var(--line); }

.fine-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.5;
}
.fine-body p {
  margin: 0 0 12px;
  max-width: 62ch;
  font-size: .87rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.fine-body p:last-child { margin-bottom: 0; }
.fine-body a { color: var(--accent); text-decoration: none; }
.fine-body a:hover { text-decoration: underline; }

@media (min-width: 760px) {
  .fine-block {
    grid-template-columns: 190px 1fr;
    gap: 32px;
    align-items: start;
  }
  .fine-title { padding-top: 3px; }
}

/* ---------- Footer ---------- */
.footer {
  padding-block: clamp(20px, 3vw, 28px) clamp(32px, 5vw, 48px);
  border-top: 1px solid var(--line);
}
.copyright { margin: 0; font-size: .82rem; color: var(--ink-soft); opacity: .85; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
  .btn-primary:hover { transform: none; }
}
