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

:root {
  --charcoal: #2C2C2C;
  --charcoal-deep: #1A1A1A;
  --charcoal-light: #3D3D3D;
  --coral: #F2755A;
  --coral-light: #F9A896;
  --coral-pale: #FDEDE9;
  --bg: #F7F5F3;
  --bg-white: #FFFFFF;
  --text: #2C2C2C;
  --text-muted: #6B6B6B;
  --text-light: #999999;
  --line: #E5E2DE;
  --line-light: #F0EDE9;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(44,44,44,.06), 0 4px 16px rgba(44,44,44,.06);
  --shadow-lg: 0 4px 24px rgba(44,44,44,.08), 0 12px 48px rgba(44,44,44,.06);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --max-w: 1200px;
  --header-h: 72px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }

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

/* ── Typography ───────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; color: var(--charcoal); }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

.section-header { margin-bottom: 56px; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .02em;
  transition: all .25s ease;
}

.btn-primary {
  background: var(--coral);
  color: #fff;
}
.btn-primary:hover { background: #e8634a; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(242,117,90,.35); }

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); }

.btn-full { width: 100%; }

/* ── Header ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(247,245,243,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.logo-mark {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--coral);
  letter-spacing: .04em;
}
.logo-wordmark {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: .02em;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-list a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color .2s;
  position: relative;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--coral);
  transition: width .25s ease;
}
.nav-list a:hover { color: var(--charcoal); }
.nav-list a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all .3s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: radial-gradient(circle at 1px 1px, var(--charcoal) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0 120px;
}

.hero-greeting {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--coral);
  margin-bottom: 12px;
}

.hero-headline {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Stat Cards */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 400px;
}

.stat-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-light);
  transition: transform .3s ease, box-shadow .3s ease;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.stat-card--primary {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.stat-card--primary .stat-card-label { color: rgba(255,255,255,.5); }
.stat-card--primary .stat-card-value { color: #fff; }

.stat-card--accent {
  background: var(--coral);
  border-color: var(--coral);
}
.stat-card--accent .stat-card-label { color: rgba(255,255,255,.7); }
.stat-card--accent .stat-card-value,
.stat-card--accent .stat-card-phone { color: #fff; }
.stat-card--accent .stat-card-phone:hover { text-decoration: underline; }

.stat-card-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}
.stat-card-value,
.stat-card-phone {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.3;
}
.stat-card-phone { color: inherit; text-decoration: none; }

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ── Section shared ───────────────────────────────── */
.section {
  padding: 96px 0;
}

/* ── Services ─────────────────────────────────────── */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-light);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.service-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,44,44,.15), transparent);
}
.service-card-body { padding: 24px 24px 28px; }

.service-card-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── About ────────────────────────────────────────── */
.about { background: var(--bg-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-images {
  position: relative;
  min-height: 560px;
}

.about-img-main {
  width: 100%;
  height: 480px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-img-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-white);
}

.about-pattern {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  opacity: .08;
  background-image: radial-gradient(circle, var(--coral) 1px, transparent 0);
  background-size: 12px 12px;
  pointer-events: none;
}

.about-content { padding: 8px 0; }

.about-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.about-feature-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--coral);
}

/* ── Gallery ──────────────────────────────────────── */
.gallery { background: var(--bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  height: 320px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  transition: transform .35s ease;
  cursor: pointer;
}
.gallery-item:hover { transform: scale(1.02); }

/* ── Reviews ──────────────────────────────────────── */
.reviews { background: var(--bg-white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--line-light);
  position: relative;
  transition: box-shadow .3s ease;
}
.review-card:hover { box-shadow: var(--shadow); }

.review-card-quote {
  width: 28px;
  height: 28px;
  color: var(--coral-light);
  margin-bottom: 16px;
  opacity: .6;
}

.review-text {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.review-footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author {
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
}

.review-location {
  font-size: 12px;
  color: var(--text-light);
}

/* ── Contact ──────────────────────────────────────── */
.contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details { list-style: none; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:last-child { border-bottom: none; }

.contact-item-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--coral);
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-item a {
  color: var(--coral);
  transition: color .2s;
}
.contact-item a:hover { color: #e8634a; }

/* Form */
.contact-form-wrap {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-light);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(242,117,90,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: #f0faf0;
  border: 1px solid #c8e6c8;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: #2d6a2d;
}
.form-success svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #4caf50;
}

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  background: var(--charcoal-deep);
  color: rgba(255,255,255,.6);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo-mark { color: var(--coral); }
.footer-brand .logo-wordmark { color: rgba(255,255,255,.8); }

.footer-tagline {
  font-size: 14px;
  margin-top: 10px;
  color: rgba(255,255,255,.4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-links a:hover { color: var(--coral); }

.footer-contact p {
  font-size: 14px;
  margin-bottom: 4px;
}
.footer-contact a {
  color: var(--coral);
  transition: color .2s;
}
.footer-contact a:hover { color: var(--coral-light); }

.footer-bottom {
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,.3);
}

/* ── Mobile Nav Overlay ───────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: rgba(247,245,243,.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.nav-overlay.active { display: flex; }
.nav-overlay a {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--charcoal);
  transition: color .2s;
}
.nav-overlay a:hover { color: var(--coral); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .hero-cards { max-width: 320px; }
  .about-grid { gap: 40px; }
  .contact-grid { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .nav-list { display: none; }
  .nav-toggle { display: flex; }

  .hero { min-height: auto; padding-top: calc(var(--header-h) + 40px); }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 0 100px;
  }
  .hero-cards { max-width: 100%; }
  .hero-wave { display: none; }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-images { min-height: 360px; }
  .about-img-main { height: 320px; }
  .about-img-float { width: 140px; height: 140px; bottom: -16px; right: -8px; }
  .about-features { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { height: 220px; }

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

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 24px; }

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

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 260px; }
}

/* ── Reduced Motion ───────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Always visible regardless of JS */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
