/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Tokens ───────────────────────────────────────────────── */
:root {
  --bg:           #faf8f3;
  --dark:         #1c1a17;
  --accent:       #c84b20;
  --accent-light: #fdf0ea;
  --muted:        #6b6460;
  --border:       #ede9e3;
  --white:        #ffffff;

  --font-serif: 'Lora', Georgia, serif;
  --font-sans:  'Inter', sans-serif;

  --hero-size: clamp(2.5rem, 5.5vw, 4.5rem);
  --h2-size:   clamp(2rem, 4vw, 3.25rem);
  --max-w:     1140px;
}

/* ── Base ─────────────────────────────────────────────────── */
html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--dark);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

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

/* ── Nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2.5rem;
  background: rgba(250, 248, 243, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav__logo img { height: 40px; width: auto; }

.nav__cta {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  text-decoration: none;
  padding: 0.55rem 1.375rem;
  border-radius: 100px;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav__cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── Section label ────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.section-label--light { color: rgba(255, 255, 255, 0.5); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10rem 2rem 6rem;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.hero__text { flex: 1; }

.hero__location {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: var(--hero-size);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}

.hero__headline em {
  font-style: italic;
  color: var(--accent);
  position: relative;
  white-space: nowrap;
}

/* Squiggly underline on the italic word */
.squiggle {
  text-decoration: underline wavy var(--accent);
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.hero__kicker {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.75rem;
  margin-top: -0.75rem;
}

.hero__intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero__btn {
  display: inline-block;
  background: var(--dark);
  color: var(--bg);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}

.hero__btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.hero__photo-wrap {
  flex-shrink: 0;
  width: 380px;
}

.hero__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 200px 200px 160px 160px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* ── Strip ────────────────────────────────────────────────── */
.strip {
  background: var(--dark);
  padding: 1rem 2rem;
  overflow: hidden;
}

.strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.strip__dot { color: var(--accent); }

/* ── Problem ──────────────────────────────────────────────── */
.problem {
  padding: 7rem 0 5rem;
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.problem__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.problem__icon {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 0.5rem;
}

.problem__item p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.6;
}

.problem__close {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  color: var(--accent);
}

/* ── Services ─────────────────────────────────────────────── */
.services {
  padding: 6rem 0 7rem;
  background: var(--dark);
  color: var(--white);
}

.services .section-label { color: rgba(255, 255, 255, 0.45); }

.services__heading {
  font-family: var(--font-serif);
  font-size: var(--h2-size);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 3.5rem;
}

.services__heading em {
  font-style: italic;
  color: var(--accent);
}

.services__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid #2e2b27;
  border-radius: 20px;
  overflow: hidden;
}

.service {
  display: flex;
  gap: 1.5rem;
  padding: 2.5rem;
  background: #1c1a17;
  border: 1px solid #2e2b27;
  transition: background 0.18s ease;
}

.service:hover { background: #252220; }

.service--highlight { background: var(--accent); border-color: var(--accent); }
.service--highlight:hover { background: #b8421a; }

.service__num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 0.2rem;
}

.service--highlight .service__num { color: rgba(255, 255, 255, 0.7); }

.service__body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.service__body p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.service--highlight .service__body p { color: rgba(255, 255, 255, 0.8); }

/* ── About ────────────────────────────────────────────────── */
.about {
  padding: 7rem 0;
}

.about__inner {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
}

.about__photo-wrap {
  flex-shrink: 0;
  width: 320px;
  position: relative;
}

.about__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 160px 160px 120px 120px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.about__badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(200, 75, 32, 0.35);
}

.about__badge-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.about__badge-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
  line-height: 1.4;
  margin-top: 0.2rem;
}

.about__text h2 {
  font-family: var(--font-serif);
  font-size: var(--h2-size);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.75rem;
}

.about__text h2 em {
  font-style: italic;
  color: var(--accent);
}

.about__text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
}

.about__text p + p { margin-top: 1.1rem; }

/* ── Contact ──────────────────────────────────────────────── */
.contact {
  background: var(--dark);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.contact__watermark {
  position: absolute;
  right: -4rem;
  bottom: -2rem;
  width: 600px;
  opacity: 0.06;
  filter: brightness(0) invert(1);
  pointer-events: none;
  user-select: none;
}

.contact__inner {
  max-width: 640px;
}

.contact__inner h2 {
  font-family: var(--font-serif);
  font-size: var(--h2-size);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.contact__inner h2 em {
  font-style: italic;
  color: var(--accent);
}

.contact__inner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.contact__btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2.25rem;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.contact__btn:hover { opacity: 0.88; transform: translateY(-2px); }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #141210;
  padding: 2rem 0;
  border-top: 1px solid #2a2825;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__logo {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.footer__legal {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    min-height: auto;
    padding-top: 7rem;
    gap: 3rem;
    text-align: left;
  }

  .hero__photo-wrap { width: 260px; }

  .problem__grid { grid-template-columns: 1fr; }

  .services__list { grid-template-columns: 1fr; }

  .about__inner { flex-direction: column; gap: 3.5rem; }

  .about__photo-wrap { width: 260px; }
}

@media (max-width: 540px) {
  .nav { padding: 1rem 1.25rem; }
  .strip__inner { justify-content: flex-start; }
  .hero { padding: 6rem 1.25rem 3rem; }
  .footer__inner { flex-direction: column; text-align: center; }
}
