/* ===== Reset & base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #faf6f1;
  --bg-soft: #f4ece4;
  --ink: #33232a;
  --ink-dim: #7d6a70;
  --rose: #2b3a52;
  --rose-deep: #1b2940;
  --blush: #dfe6f2;
  --sage: #63755f;
  --gold: #b8925a;
  --line: rgba(51,35,42,0.12);
  --card: #ffffff;
  --radius: 18px;
  --font-head: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 44px;
}
.section-title em, .cta-title em, .hero-title .em {
  font-style: italic;
  color: var(--rose);
}

/* ===== Scroll progress ===== */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2.5px;
  width: 100%;
  z-index: 200;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform-origin: 0 50%;
  transform: scaleX(0);
  will-change: transform;
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled {
  background: rgba(250,246,241,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  height: 46px;
  width: auto;
  display: block;
}
.brand-rose {
  width: 34px; height: 34px;
  color: var(--rose);
  flex-shrink: 0;
}
.brand-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.brand-text em {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.nav-links { display: flex; gap: 30px; }
.nav-links a {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-dim);
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1.5px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 4px 24px 20px;
  background: rgba(250,246,241,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-mobile a {
  padding: 12px 8px;
  font-size: 16px;
  color: var(--ink-dim);
  border-bottom: 1px solid var(--line);
}
.nav-mobile a.btn { margin-top: 14px; border: none; justify-content: center; }
.nav-mobile.open { display: flex; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-lg { padding: 15px 30px; font-size: 15.5px; }
.btn-primary {
  background: var(--rose);
  color: #fff;
}
.btn-primary:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(27,41,64,0.5);
}
.btn-outline {
  border-color: rgba(51,35,42,0.25);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-2px);
}
.btn-instagram {
  color: #fff;
  background: linear-gradient(70deg, #feda75 0%, #fa7e1e 22%, #d62976 52%, #962fbf 78%, #4f5bd5 100%);
  border: none;
  position: relative;
}
.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(214,41,118,0.6);
}
.ig-glyph { width: 20px; height: 20px; flex-shrink: 0; }
.btn-whatsapp {
  background: #25D366;
  color: #073e21;
  border: none;
}
.btn-whatsapp:hover {
  background: #1fbe5b;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(37,211,102,0.6);
}
.wa-glyph { width: 20px; height: 20px; flex-shrink: 0; }
.cta-whatsapp { margin: 0 auto 8px; }

/* ===== Hero ===== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 32px 90px;
  position: relative;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.wash {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.wash-1 {
  width: 620px; height: 620px;
  background: #dfe6f2;
  top: -180px; right: -140px;
}
.wash-2 {
  width: 520px; height: 520px;
  background: #e9e4d6;
  bottom: -220px; left: -140px;
}
.hero-rose {
  position: absolute;
  right: 6%;
  top: 50%;
  width: min(380px, 34vw);
  transform: translateY(-50%);
  color: var(--rose);
  opacity: 0.14;
  animation: roseSway 9s ease-in-out infinite;
}
@keyframes roseSway {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50% { transform: translateY(-52%) rotate(2.5deg); }
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.hero-logo {
  width: min(235px, 58vw);
  height: auto;
  margin: 0 auto 24px;
  display: block;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.6);
  border-radius: 999px;
  padding: 9px 18px;
  margin-bottom: 26px;
}
.badge-star { color: var(--gold); letter-spacing: 0.12em; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(44px, 8vw, 92px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-bottom: 26px;
}
.hero-title .line { display: block; }
.hero-title .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em);
  animation: wordUp 0.9s var(--ease-out) forwards;
}
.hero-title .line:nth-child(1) .w:nth-child(1) { animation-delay: 0.10s; }
.hero-title .line:nth-child(1) .w:nth-child(2) { animation-delay: 0.20s; }
.hero-title .line:nth-child(2) .w:nth-child(1) { animation-delay: 0.32s; }
.hero-title .line:nth-child(2) .w:nth-child(2) { animation-delay: 0.42s; }
.hero-title .line:nth-child(2) .w:nth-child(3) { animation-delay: 0.52s; }
@keyframes wordUp { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  font-size: clamp(16px, 2vw, 18.5px);
  color: var(--ink-dim);
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-sub strong { color: var(--ink); }

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-points {
  list-style: none;
  display: flex;
  gap: 10px 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-points li {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-dim);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-points li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose);
}

.reveal-load {
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) forwards;
}
.hero-badge.reveal-load { animation-delay: 0s; }
.hero-sub.reveal-load { animation-delay: 0.65s; }
.hero-actions.reveal-load { animation-delay: 0.8s; }
.hero-points.reveal-load { animation-delay: 0.95s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Ribbon marquee ===== */
.ribbon {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ribbon-track {
  display: inline-flex;
  gap: 26px;
  animation: ribbon 30s linear infinite;
  font-family: var(--font-head);
  font-size: 16px;
  font-style: italic;
  color: var(--ink-dim);
}
.ribbon-track span:nth-child(2n) { color: var(--rose); font-style: normal; font-size: 12px; align-self: center; }
.ribbon:hover .ribbon-track { animation-play-state: paused; }
@keyframes ribbon {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== About ===== */
.about { padding: 130px 0 90px; }
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.about-copy p { color: var(--ink-dim); margin-bottom: 18px; max-width: 560px; }
.about-copy p strong { color: var(--ink); }

.about-stats {
  display: flex;
  gap: 36px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.astat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 600;
  color: var(--rose);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.astat-label {
  font-size: 13px;
  color: var(--ink-dim);
}

.about-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 24px 60px -30px rgba(51,35,42,0.25);
}
.swatch-stack { display: grid; gap: 12px; }
.swatch {
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.3s var(--ease-out);
}
.swatch:hover { transform: translateX(6px); }
.s1 { background: #dfa4b4; color: #5c2337; }
.s2 { background: #f1e7d8; color: #6b5b43; }
.s3 { background: #a9b8a1; color: #35452f; }
.s4 { background: #57333f; color: #ecd6dd; }
.panel-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-dim);
}

/* ===== Services ===== */
.services { padding: 90px 0; background: var(--bg-soft); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px -24px rgba(51,35,42,0.3);
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--ink-dim); }

/* ===== Work reel (video) ===== */
.work { padding: 120px 0 90px; }
.work-reel {
  position: relative;
  display: block;
  width: min(520px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 auto 48px;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #2a1a20;
  box-shadow: 0 34px 80px -34px rgba(51,35,42,0.6);
  border: 1px solid var(--line);
  cursor: pointer;
  font-family: inherit;
}
.work-reel .ico-sound { display: none; }
.work-reel.sound-on .ico-muted { display: none; }
.work-reel.sound-on .ico-sound { display: inline-block; }
.reel-ico { width: 14px; height: 14px; }
.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reel-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(30,15,22,0.5);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 7px 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.reel-tag svg { width: 13px; height: 13px; }

/* ===== Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tile {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}
.tile:hover img { transform: scale(1.06); }
.tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px -22px rgba(51,35,42,0.35);
}
.tile figcaption {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 30px 18px 15px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(25,12,17,0.78));
}
.tile-chip {
  position: absolute;
  z-index: 2;
  top: 14px; left: 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(27,41,64,0.72);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  padding: 5px 11px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.tile-chip.chip-gold {
  background: rgba(150,110,50,0.78);
}
.gallery-note {
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--ink-dim);
  text-align: center;
}
.insta-link {
  color: var(--rose);
  font-weight: 600;
  border-bottom: 1px solid rgba(43,58,82,0.35);
  transition: border-color 0.2s ease;
}
.insta-link:hover { border-color: var(--rose); }

/* ===== Reviews ===== */
.reviews { padding: 90px 0 120px; background: var(--bg-soft); }
.review-stars { color: var(--gold); font-size: 17px; letter-spacing: 0.14em; }

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 30px 36px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.rs-score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  padding-right: 34px;
  border-right: 1px solid var(--line);
}
.rs-num {
  font-family: var(--font-head);
  font-size: 60px;
  font-weight: 600;
  color: var(--rose);
  line-height: 1;
}
.rs-out { font-size: 18px; color: var(--ink-dim); font-weight: 600; }
.rs-stars { display: block; width: 100%; color: var(--gold); font-size: 18px; letter-spacing: 0.18em; }
.rs-meta { flex: 1; min-width: 240px; }
.rs-meta > p { color: var(--ink); margin-bottom: 14px; font-size: 15px; }
.rs-bars { display: flex; flex-direction: column; gap: 6px; }
.rs-bars li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  color: var(--ink-dim);
  max-width: 340px;
}
.rs-bars b { color: var(--ink); font-variant-numeric: tabular-nums; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 18px 44px -30px rgba(51,35,42,0.3);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px -28px rgba(51,35,42,0.4);
}
.rc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--blush);
  border-radius: 999px;
  padding: 4px 11px;
  margin-bottom: 14px;
}
.review-card .review-stars { display: block; margin-bottom: 8px; }
.review-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.review-card p {
  color: var(--ink-dim);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.review-card footer {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}

/* ===== CTA ===== */
.cta { padding: 120px 0; }
.cta-inner {
  text-align: center;
  background: linear-gradient(150deg, #141f33, var(--rose-deep) 55%, var(--rose));
  color: #fdf3f6;
  border-radius: 26px;
  padding: 76px 40px;
  position: relative;
  overflow: hidden;
}
.cta-rose {
  width: 44px; height: 44px;
  margin: 0 auto 18px;
  color: #d3b184;
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-title em { color: #e2c896; }
.cta-sub {
  color: rgba(253,243,246,0.8);
  max-width: 520px;
  margin: 0 auto 34px;
  font-size: 16px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.cta .btn-primary { background: #fdf3f6; color: var(--rose-deep); }
.cta .btn-primary:hover { background: #fff; box-shadow: 0 14px 30px -10px rgba(0,0,0,0.35); }
.cta .btn-outline { border-color: rgba(253,243,246,0.4); color: #fdf3f6; }
.cta .btn-outline:hover { border-color: #fff; color: #fff; }
.cta-location { font-size: 13.5px; color: rgba(253,243,246,0.65); }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--line); padding: 40px 0 30px; }

.checkatrade-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 460px;
  margin: 0 auto 30px;
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px -28px rgba(51,35,42,0.4);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, border-color 0.25s ease;
}
.checkatrade-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -26px rgba(51,35,42,0.5);
  border-color: rgba(51,35,42,0.2);
}
.ca-check {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #00a3a1;
}
.ca-check svg { width: 22px; height: 22px; }
.ca-text { display: flex; flex-direction: column; line-height: 1.35; }
.ca-text strong { font-size: 15px; color: var(--ink); }
.ca-text em { font-style: normal; font-size: 12.5px; color: var(--ink-dim); }
.ca-arrow { width: 18px; height: 18px; margin-left: auto; color: var(--ink-dim); flex-shrink: 0; }

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--rose); }

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-inner p { font-size: 13px; color: var(--ink-dim); }
.footer-inner a { color: var(--rose); font-weight: 500; }

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .rs-score { border-right: none; padding-right: 0; }
  .hero-rose { display: none; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .brand-mark { height: 38px; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ribbon-track, .hero-rose { animation: none; }
  .hero-title .w, .reveal-load { animation: none; opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
