/* ============================================================
   Happy Heart Reiki Healing — Stylesheet
   Matches actual Wix site branding:
   Colors: Cream bg · Deep purple · Sky blue · Sage green · Peach
   Fonts:  Dancing Script (headings) · Nunito (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

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

:root {
  /* Core palette — matches Wix site colors */
  --cream:          #f6f6f6;
  --cream-warm:     #faf8f5;
  --white:          #FFFFFF;

  /* Calming blue — replaces deep purple */
  --purple:         #1a3a5c;
  --purple-mid:     #4a7a9b;
  --purple-light:   #ddeef7;
  --purple-xlight:  #f0f8fd;

  /* Sky blue — #bde9fb (Wix color_12/17) */
  --sky:            #bde9fb;
  --sky-mid:        #7bbfd8;
  --sky-dark:       #3a7fa0;
  --sky-light:      #e6f7fd;

  /* Peach/coral accent — #f9c5b4 (Wix color_21) */
  --peach:          #f9c5b4;
  --peach-mid:      #e8937c;
  --peach-dark:     #9e3b1b;
  --peach-light:    #fef0eb;

  /* Sage green — from the logo */
  --sage:           #4a7c4e;
  --sage-light:     #d4e8d5;
  --sage-dark:      #2d5330;

  /* Text */
  --text-dark:      #1a3a5c;   /* same as --purple */
  --text-mid:       #4a7a9b;   /* same as --purple-mid */
  --text-light:     #8e7ea0;
  --border:         #ddd5e8;

  /* Fonts */
  --font-script:    'Dancing Script', cursive;
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Nunito', 'Helvetica Neue', sans-serif;

  --nav-height:     80px;
  --section-gap:    80px;
  --radius:         10px;
  --shadow:         0 4px 24px rgba(40, 26, 57, 0.10);
  --shadow-card:    0 2px 16px rgba(40, 26, 57, 0.09);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dark);
  background-color: var(--cream-warm);
}

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

a {
  color: var(--sky-dark);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--sage);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text-dark);
  font-weight: 500;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-mid);
}

p:last-child {
  margin-bottom: 0;
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: var(--section-gap) 0;
}

.section--alt {
  background-color: var(--sky-light);
}

.section--white {
  background-color: var(--white);
}

.section--peach {
  background-color: var(--peach-light);
}

.text-center { text-align: center; }

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--sky-mid), var(--sage));
  margin: 16px auto 32px;
  border: none;
  border-radius: 2px;
}

.divider--left {
  margin-left: 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 34px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
}

.btn--primary {
  background: linear-gradient(135deg, var(--sage), var(--sky-dark));
  color: var(--white);
  border-color: transparent;
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--sky-dark), var(--sage));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(74, 124, 78, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--sage);
  border-color: var(--sage);
}

.btn--outline:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--sky {
  background: linear-gradient(135deg, var(--sky-mid), var(--sky-dark));
  color: var(--white);
}

.btn--sky:hover {
  background: linear-gradient(135deg, var(--sky-dark), var(--sky-mid));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(123, 191, 216, 0.40);
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(40, 26, 57, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo {
  height: 54px;
  width: auto;
  object-fit: contain;
}

/* Fallback text brand (shown if logo fails to load) */
.nav__brand-text {
  display: flex;
  flex-direction: column;
}

.nav__brand-name {
  font-family: var(--font-script);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1.1;
}

.nav__brand-sub {
  font-family: var(--font-body);
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}

.nav__links a.btn--primary {
  color: var(--white);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--sage);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--sage);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--purple);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(40, 26, 57, 0.10);
}

.nav__mobile.is-open {
  display: block;
}

.nav__mobile a {
  display: block;
  padding: 12px 8%;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}

.nav__mobile a:last-child {
  border-bottom: none;
}

.nav__mobile a:hover {
  color: var(--sage);
  background: var(--sage-light);
}

/* ── Page Offset for Fixed Nav ────────────────────────────── */
main {
  padding-top: var(--nav-height);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--purple);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.45;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 92, 0.75) 0%,
    rgba(26, 58, 92, 0.45) 50%,
    rgba(58, 127, 160, 0.30) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 16px;
  display: block;
}

.hero__title {
  font-family: var(--font-script);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--sky);
  margin-bottom: 28px;
}

.hero__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.8;
}

/* Fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow  { animation: fadeInUp 0.7s ease both; animation-delay: 0.1s; opacity: 0; }
.hero__title    { animation: fadeInUp 0.7s ease both; animation-delay: 0.25s; opacity: 0; }
.hero__subtitle { animation: fadeInUp 0.7s ease both; animation-delay: 0.4s; opacity: 0; }
.hero__text     { animation: fadeInUp 0.7s ease both; animation-delay: 0.55s; opacity: 0; }
.hero__cta      { animation: fadeInUp 0.7s ease both; animation-delay: 0.7s; opacity: 0; display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 600px) { .hero__cta { flex-direction: column; } .hero__cta .btn { width: 100%; text-align: center; } .hero__content { padding-bottom: 48px; } }
@media (max-width: 900px) and (orientation: landscape) { .hero__content { padding-bottom: 40px; } }

/* ── Intro / Two-column ───────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro__image img {
  border-radius: 12px;
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

.intro__bullets {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bullet-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.bullet-item__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--sky), var(--sage-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-top: 2px;
}

.bullet-item__text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.bullet-item__text span {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── Services Grid ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(40, 26, 57, 0.14);
}

.service-card__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
}

.service-card__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.badge--duration {
  background: var(--sky-light);
  color: var(--sky-dark);
}

.badge--price {
  background: var(--sage-light);
  color: var(--sage-dark);
}

.service-card__desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

.service-card__footer {
  margin-top: 8px;
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--purple) 0%, var(--sky-dark) 100%);
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/hero.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}

.page-hero__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  opacity: 0.9;
  object-fit: contain;
}

.page-hero__title {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.page-hero__subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--sky);
}

/* ── About Page ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.about__photo img {
  border-radius: 12px;
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

.about__photo-caption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 10px;
  font-style: italic;
}

.lineage {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
}

.lineage__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-mid);
}

.lineage__item:last-child {
  border-bottom: none;
  font-weight: 700;
  color: var(--sage);
}

.lineage__num {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--sky), var(--sage-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sage-dark);
}

/* ── Events ───────────────────────────────────────────────── */
.events-intro {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.event-placeholder {
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  color: var(--text-light);
  margin-top: 48px;
}

.event-placeholder__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

/* ── Mantra / Meditation ──────────────────────────────────── */
.meditation-content {
  max-width: 780px;
  margin: 0 auto;
}

.mantra-box {
  background: linear-gradient(135deg, var(--sky-light), var(--purple-xlight));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin: 32px 0;
}

.mantra-text {
  font-family: var(--font-script);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  color: var(--text-dark);
  line-height: 2;
  margin-bottom: 0;
}

.mantra-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 16px;
  margin-bottom: 0;
}

.steps {
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--sage), var(--sky-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 2px;
}

.step p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-info__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--sky), var(--sage-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2px;
}

.contact-info__value {
  color: var(--text-mid);
  font-size: 0.94rem;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  transition: all 0.2s;
}

.social-link:hover {
  border-color: var(--sage);
  color: var(--sage);
  background: var(--sage-light);
}

/* ── Forms ────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--sky-mid);
  box-shadow: 0 0 0 3px rgba(123, 191, 216, 0.25);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 24px auto 0;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
}

.newsletter-form input:focus {
  border-color: var(--sky-mid);
}

/* ── Ornamental Dividers ──────────────────────────────────── */
.ornament {
  text-align: center;
  color: var(--sage);
  font-size: 1.1rem;
  letter-spacing: 0.5em;
  margin: 0 0 32px;
  opacity: 0.7;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--purple);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
  opacity: 0.9;
}

.footer__brand-name {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 4px;
  display: block;
}

.footer__brand-tag {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  display: block;
  margin-bottom: 14px;
}

.footer__brand-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 16px;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer ul li a:hover {
  color: var(--sky);
}

.footer__contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

.footer__contact a {
  color: rgba(255,255,255,0.6);
}

.footer__contact a:hover {
  color: var(--sky);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.footer__bottom-links a:hover {
  color: var(--sky);
}

/* ── Section headings ─────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 10px;
}

/* ── Blockquote / Quote ───────────────────────────────────── */
.quote-block {
  background: linear-gradient(135deg, var(--sky-light), var(--white));
  border-left: 4px solid var(--sage);
  padding: 28px 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
}

.quote-block p {
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--text-dark);
  margin: 0;
}

/* ── Havan box ────────────────────────────────────────────── */
.havan-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.havan-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.havan-item strong {
  display: block;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 4px;
}

/* ── Signature sign-off ───────────────────────────────────── */
.signoff {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--purple);
  line-height: 1.6;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .intro-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about__photo {
    max-width: 320px;
    margin: 0 auto;
  }

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

@media (max-width: 680px) {
  :root {
    --section-gap: 56px;
    --nav-height: 70px;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__logo {
    height: 44px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    border-radius: var(--radius);
  }

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

@media (max-width: 420px) {
  .hero {
    min-height: 75vh;
  }
}
