﻿:root {
  --blush: #f2d0d8;
  --rose: #d4748f;
  --deep-rose: #b8506a;
  --petal: #fce8ee;
  --mauve: #8a4a5e;
  --charcoal: #2a1f24;
  --warm-white: #fdf6f8;
  --soft-grey: #e8dde0;
  --gold: #c9a96e;
  --nav-h: 80px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/*  SCROLLBAR  */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--petal);
}
::-webkit-scrollbar-thumb {
  background: var(--rose);
  border-radius: 3px;
}

/*  TOP BAR  */
.topbar {
  background: var(--charcoal);
  color: #ccc;
  font-size: 12px;
  letter-spacing: 0.08em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 60px;
  font-family: "Jost", sans-serif;
  font-weight: 300;
}
.topbar a {
  color: var(--blush);
  text-decoration: none;
}
.topbar .socials {
  display: flex;
  gap: 14px;
}
.topbar .socials a {
  font-size: 14px;
  transition: color 0.2s;
}
.topbar .socials a:hover {
  color: var(--rose);
}

/*  NAV  */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(253, 246, 248, 0.96);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  border-bottom: 1px solid var(--soft-grey);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 30px rgba(180, 80, 106, 0.1);
}
.logo {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--mauve);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo span {
  font-size: 9px;
  letter-spacing: 0.25em;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  color: var(--rose);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--rose);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  background: var(--rose);
  color: #fff;
  border: none;
  padding: 11px 26px;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  transition:
    background 0.25s,
    transform 0.2s;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--deep-rose);
  transform: translateY(-1px);
}

/*  HERO  */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  background: var(--charcoal);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a1f24 0%, #4a2535 50%, #2a1f24 100%);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 70% 50%,
      rgba(212, 116, 143, 0.18) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 20% 80%,
      rgba(242, 208, 216, 0.08) 0%,
      transparent 60%
    );
}
/* Decorative circles */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(242, 208, 216, 0.15);
}
.hero-deco-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: 100px;
}
.hero-deco-2 {
  width: 300px;
  height: 300px;
  top: 80px;
  right: 250px;
  border-color: rgba(212, 116, 143, 0.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 700px;
  animation: heroIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--rose);
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--warm-white);
  margin-bottom: 12px;
}
.hero h1 em {
  font-style: italic;
  color: var(--blush);
}
.hero-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  color: rgba(252, 232, 238, 0.75);
  margin: 20px 0 40px;
  line-height: 1.5;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  background: var(--rose);
  color: #fff;
  padding: 16px 38px;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--deep-rose);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 80, 106, 0.4);
}
.btn-outline {
  color: var(--blush);
  border: 1px solid rgba(242, 208, 216, 0.4);
  padding: 15px 38px;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--blush);
  background: rgba(242, 208, 216, 0.08);
}

.hero-image-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 44%;
  overflow: hidden;
}
.hero-image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--charcoal) 0%, transparent 40%);
  z-index: 1;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #6b3048 0%, #4a2535 40%, #8a4a5e 100%);
  background-position: center;
  background-size: cover;
  background-image:
    linear-gradient(
      to right,
      rgba(42, 31, 36, 0.25),
      rgba(42, 31, 36, 0.05)
    ),
    url("https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1100&q=80");
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 40px;
}
/* Stylised silhouette */
.silhouette {
  width: 260px;
  height: 480px;
  display: none;
  background: linear-gradient(180deg, #e8b8c8 0%, #c47090 60%, #8a4a5e 100%);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  opacity: 0.35;
  filter: blur(2px);
}
.hero-stats {
  position: absolute;
  bottom: 50px;
  right: 60px;
  z-index: 3;
  display: flex;
  gap: 50px;
  animation: heroIn 1.4s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--blush);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(252, 232, 238, 0.5);
  margin-top: 4px;
}

/*  AWARD BAND  */
.award-band {
  background: var(--petal);
  padding: 28px 60px;
  text-align: center;
  border-bottom: 1px solid var(--soft-grey);
}
.award-band p:first-child {
  font-family: "Playfair Display", serif;
  font-size: 13px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 4px;
}
.award-band p:last-child {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-style: italic;
  color: var(--mauve);
}

/*  SERVICES  */
.services {
  padding: 110px 60px;
  background: var(--warm-white);
}
.section-header {
  text-align: center;
  margin-bottom: 70px;
}
.section-tag {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
}
.section-title em {
  font-style: italic;
  color: var(--rose);
}
.section-rule {
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, var(--rose), var(--blush));
  margin: 20px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.service-card-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover .service-card-bg {
  transform: scale(1.06);
}
.sc-1 .service-card-bg {
  background: linear-gradient(160deg, #c47090 0%, #8a4a5e 100%);
  background-image: url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=900&q=80");
}
.sc-2 .service-card-bg {
  background: linear-gradient(160deg, #e8b8c8 0%, #d4748f 100%);
  background-image: url("https://images.unsplash.com/photo-1516975080664-ed2fc6a32937?auto=format&fit=crop&w=900&q=80");
}
.sc-3 .service-card-bg {
  background: linear-gradient(160deg, #8a4a5e 0%, #4a2535 100%);
  background-image: url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=900&q=80");
}
.sc-4 .service-card-bg {
  background: linear-gradient(160deg, #f2d0d8 0%, #c47090 100%);
  background-image: url("https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=900&q=80");
}
.sc-5 .service-card-bg {
  background: linear-gradient(160deg, #4a2535 0%, #8a4a5e 100%);
  background-image: url("https://images.unsplash.com/photo-1519415510236-718bdfcd89c8?auto=format&fit=crop&w=900&q=80");
}
.sc-6 .service-card-bg {
  background: linear-gradient(160deg, #d4748f 0%, #b8506a 100%);
  background-image: url("https://images.unsplash.com/photo-1519699047748-de8e457a634e?auto=format&fit=crop&w=900&q=80");
}

/* Decorative pattern overlay */
.service-card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 80% 20%,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 50%
  );
}

.service-card-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 30px;
  background: linear-gradient(
    to top,
    rgba(42, 31, 36, 0.85) 0%,
    transparent 60%
  );
  transition: background 0.4s;
}
.service-card:hover .service-card-inner {
  background: linear-gradient(
    to top,
    rgba(42, 31, 36, 0.92) 0%,
    rgba(42, 31, 36, 0.2) 100%
  );
}
.service-icon {
  display: none;
  font-size: 28px;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s 0.1s;
}
.service-card:hover .service-icon {
  opacity: 1;
  transform: translateY(0);
}
.service-name {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.service-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s,
    opacity 0.4s;
  opacity: 0;
}
.service-card:hover .service-desc {
  max-height: 60px;
  opacity: 1;
}
.service-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-style: italic;
  color: var(--blush);
  margin-top: 10px;
}

/*  FEATURE BANNER  */
.feature-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.feature-visual {
  background: linear-gradient(135deg, #c47090 0%, #8a4a5e 50%, #4a2535 100%);
  background-position: center;
  background-size: cover;
  background-image:
    linear-gradient(rgba(42, 31, 36, 0.45), rgba(42, 31, 36, 0.5)),
    url("https://images.unsplash.com/photo-1560869713-7d0a29430803?auto=format&fit=crop&w=1100&q=80");
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.feature-visual::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  top: -100px;
  right: -100px;
}
.feature-visual::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  bottom: -50px;
  left: -50px;
}
.feature-visual-inner {
  text-align: center;
  z-index: 1;
  padding: 60px;
}
.feature-visual-inner .big-text {
  font-family: "Playfair Display", serif;
  font-size: clamp(60px, 8vw, 110px);
  font-weight: 900;
  font-style: italic;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  letter-spacing: -0.02em;
}
.feature-visual-inner .center-badge {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 40px;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}
.center-badge p:first-child {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 8px;
}
.center-badge p:last-child {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}

.feature-content {
  background: var(--petal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 70px;
}
.feature-content .section-tag {
  text-align: left;
}
.feature-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
  margin: 14px 0 24px;
}
.feature-content h2 em {
  font-style: italic;
  color: var(--rose);
}
.feature-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #6a5560;
  margin-bottom: 16px;
  font-weight: 300;
}
.feature-list {
  list-style: none;
  margin: 20px 0 36px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--mauve);
  margin-bottom: 10px;
  font-weight: 400;
}
.feature-list li::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--rose);
  flex-shrink: 0;
}

/*  FEATURED / EXCELLENCE  */
.excellence {
  padding: 110px 60px;
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}
.excellence-left {
}
.excellence-tag-big {
  font-family: "Playfair Display", serif;
  font-size: 80px;
  font-weight: 900;
  font-style: italic;
  color: var(--soft-grey);
  line-height: 0.9;
  margin-bottom: 30px;
}
.excellence-left h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 16px;
}
.excellence-left p {
  font-size: 14px;
  line-height: 1.8;
  color: #6a5560;
  font-weight: 300;
}

.excellence-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.excellence-card {
  background: var(--petal);
  padding: 36px 30px;
  border: 1px solid var(--soft-grey);
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.excellence-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--rose), var(--blush));
  transform: scaleX(0);
  transition: transform 0.4s;
}
.excellence-card:hover {
  border-color: var(--blush);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(212, 116, 143, 0.12);
}
.excellence-card:hover::before {
  transform: scaleX(1);
}
.excellence-card .ec-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.excellence-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.excellence-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #8a7075;
  font-weight: 300;
}
.excellence-card .ec-badge {
  display: inline-block;
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  cursor: pointer;
  transition: gap 0.2s;
}
.excellence-card .ec-badge:hover {
  text-decoration: underline;
}

/*  FULLWIDTH PROMO  */
.promo-fullwidth {
  position: relative;
  padding: 130px 60px;
  background: var(--charcoal);
  text-align: center;
  overflow: hidden;
}
.promo-fullwidth::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    rgba(212, 116, 143, 0.15) 0%,
    transparent 70%
  );
}
.promo-fullwidth .eyebrow {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
  display: block;
}
.promo-fullwidth h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  color: var(--warm-white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.promo-fullwidth h2 em {
  font-style: italic;
  color: var(--blush);
}
.promo-fullwidth p {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(252, 232, 238, 0.6);
  margin-bottom: 44px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Floating petals */
.petal-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.petal-el {
  position: absolute;
  border-radius: 50% 0 50% 0;
  opacity: 0.06;
  animation: drift linear infinite;
}
@keyframes drift {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-120vh) rotate(360deg);
  }
}

/*  PROMOTIONS  */
.promotions {
  padding: 110px 60px;
  background: var(--warm-white);
}
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 60px;
}
.promo-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  border: 1px solid var(--soft-grey);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.promo-card:hover {
  box-shadow: 0 12px 40px rgba(212, 116, 143, 0.12);
}
.promo-card-visual {
  min-height: 180px;
  position: relative;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}
.promo-card-visual::before,
.blog-card-visual::before {
  content: "";
  inset: 0;
  position: absolute;
  background: linear-gradient(to top, rgba(42, 31, 36, 0.35), transparent 60%);
}
.pc-1 .promo-card-visual {
  background: linear-gradient(135deg, #f2d0d8, #c47090);
  background-image: url("https://images.unsplash.com/photo-1522337660859-02fbefca4702?auto=format&fit=crop&w=800&q=80");
}
.pc-2 .promo-card-visual {
  background: linear-gradient(135deg, #8a4a5e, #c47090);
  background-image: url("https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=800&q=80");
}
.pc-3 .promo-card-visual {
  background: linear-gradient(135deg, #d4748f, #4a2535);
  background-image: url("https://images.unsplash.com/photo-1522338242992-e1a54906a8da?auto=format&fit=crop&w=800&q=80");
}
.pc-4 .promo-card-visual {
  background: linear-gradient(135deg, #4a2535, #8a4a5e);
  background-image: url("https://images.unsplash.com/photo-1512316609839-ce289d3eba0a?auto=format&fit=crop&w=800&q=80");
}
.promo-card-body {
  padding: 30px;
}
.promo-card-body .promo-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
.promo-card-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.2;
}
.promo-card-body p {
  font-size: 13px;
  line-height: 1.7;
  color: #8a7075;
  font-weight: 300;
  margin-bottom: 18px;
}
.promo-link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--blush);
  padding-bottom: 2px;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.promo-link:hover {
  color: var(--deep-rose);
  border-color: var(--rose);
}

/*  BLOG STRIP  */
.blog-strip {
  background: var(--petal);
  padding: 110px 60px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.blog-card {
  background: var(--warm-white);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.blog-card:hover {
  box-shadow: 0 12px 40px rgba(212, 116, 143, 0.15);
}
.blog-card-visual {
  aspect-ratio: 4/3;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}
.bc-1 .blog-card-visual {
  background: linear-gradient(135deg, #e8b8c8, #d4748f);
  background-image: url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=900&q=80");
}
.bc-2 .blog-card-visual {
  background: linear-gradient(135deg, #c47090, #8a4a5e);
  background-image: url("https://images.unsplash.com/photo-1516975080664-ed2fc6a32937?auto=format&fit=crop&w=900&q=80");
}
.bc-3 .blog-card-visual {
  background: linear-gradient(135deg, #8a4a5e, #4a2535);
  background-image: url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=900&q=80");
}
.blog-card-body {
  padding: 28px;
}
.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  align-items: center;
}
.blog-cat {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--rose);
  color: #fff;
  padding: 4px 10px;
  font-weight: 500;
}
.blog-date {
  font-size: 11px;
  color: #a08085;
  font-weight: 300;
}
.blog-card-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-card-body p {
  font-size: 13px;
  line-height: 1.7;
  color: #8a7075;
  font-weight: 300;
}

/*  FOOTER  */
footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 60px 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo {
  color: var(--blush);
  margin-bottom: 20px;
  display: inline-block;
  font-size: 22px;
}
.footer-brand .logo span {
  color: var(--rose);
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  margin-bottom: 24px;
  max-width: 260px;
}
.footer-socials {
  display: flex;
  gap: 14px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}
.footer-socials a:hover {
  border-color: var(--rose);
  color: var(--rose);
}
.footer-col h4 {
  font-family: "Jost", sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--blush);
}
.footer-hours p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 8px;
}
.footer-hours strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}
.footer-newsletter {
  display: flex;
  margin-top: 14px;
}
.footer-newsletter input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  padding: 11px 16px;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 300;
  outline: none;
}
.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.footer-newsletter button {
  background: var(--rose);
  border: none;
  padding: 11px 18px;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: background 0.2s;
}
.footer-newsletter button:hover {
  background: var(--deep-rose);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.25);
}
.footer-payment {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.footer-newsletter-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 14px;
}
.footer-payment-wrap {
  margin-top: 24px;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  margin-left: 20px;
}
.pay-badge {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
}

/*  MOBILE NAV TOGGLE  */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s;
}

/*  REVEAL ANIMATION  */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

@media (max-width: 1024px) {
  nav,
  .topbar,
  .services,
  .promotions,
  .blog-strip,
  footer {
    padding-left: 30px;
    padding-right: 30px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .excellence {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 70px 30px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .promo-fullwidth {
    padding: 80px 30px;
  }
}
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .hero-content {
    padding: 0 30px;
  }
  .hero-image-panel {
    display: none;
  }
  .hero-stats {
    right: 30px;
    gap: 30px;
  }
  .feature-banner {
    grid-template-columns: 1fr;
  }
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .excellence-right {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .promo-card {
    grid-template-columns: 1fr;
  }
  .promo-card-visual {
    aspect-ratio: 2/1;
    font-size: 48px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}
