/* ============================================
   TREATS BY ME — Design System
   Palette: cream, blush, dusty rose, warm white
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=Pinyon+Script&display=swap');

/* ── Custom Properties ── */
:root {
  --cream:        #fdf8f4;
  --warm-white:   #fff9f6;
  --blush:        #f2cfc7;
  --rose:         #e8a89c;
  --dusty-rose:   #c97b6e;
  --deep-rose:    #a85d52;
  --text-dark:    #2d1f1c;
  --text-mid:     #6b4c47;
  --text-light:   #b08a85;
  --border:       #edddd9;
  --shadow:       rgba(169, 93, 82, 0.08);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script:  'Pinyon Script', cursive;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:    6px;
  --radius-md:    16px;
  --radius-lg:    32px;
  --radius-pill:  999px;

  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --max-w:        1200px;
  --section-pad:  clamp(60px, 10vw, 120px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 16px);
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* ── Typography Scale ── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
}

.script-accent {
  font-family: var(--font-script);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--dusty-rose);
  line-height: 1;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

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

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(253, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px var(--shadow);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(20px, 5vw, 60px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}

.nav__logo-main {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--text-dark);
  transition: color var(--transition);
}

.nav__logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 400;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.nav__link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--dusty-rose);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--dusty-rose);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--dusty-rose);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}

.nav__cta:hover {
  background: var(--deep-rose);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(169, 93, 82, 0.3);
}

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  transition: var(--transition);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  background: var(--warm-white);
  padding: 40px clamp(20px, 5vw, 60px);
  flex-direction: column;
  gap: 32px;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile .nav__link {
  font-size: 1rem;
  letter-spacing: 0.18em;
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--dusty-rose);
  color: #fff;
  box-shadow: 0 4px 20px rgba(169, 93, 82, 0.25);
}

.btn-primary:hover {
  background: var(--deep-rose);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(169, 93, 82, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--dusty-rose);
  border: 1.5px solid var(--dusty-rose);
}

.btn-outline:hover {
  background: var(--dusty-rose);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #f5d9d0 0%,
    #ead0c8 30%,
    #e2c4c0 60%,
    #d4b0ab 100%
  );
  z-index: 0;
}

/* Placeholder image container - replace src with real photo */
.hero__img {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(30, 14, 10, 0.72) 0%,
    rgba(30, 14, 10, 0.3) 40%,
    rgba(30, 14, 10, 0.05) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 0 clamp(20px, 5vw, 60px) clamp(60px, 10vw, 100px);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  letter-spacing: 0.3em;
}

.hero__title {
  color: #fff;
  margin-bottom: 16px;
  max-width: 14ch;
}

.hero__title em {
  font-style: italic;
  color: var(--blush);
}

.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 40ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: clamp(20px, 5vw, 60px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ── Marquee / Ticker ── */
.marquee-strip {
  background: var(--dusty-rose);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.06em;
  padding: 0 32px;
}

.marquee-track .dot {
  color: var(--blush);
  font-style: normal;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Signature Services ── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  margin-top: 60px;
}

.service-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.service-card__bg {
  position: absolute;
  inset: 0;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__bg {
  transform: scale(1.06);
}

.service-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 10, 8, 0.75) 0%,
    rgba(30, 10, 8, 0.2) 50%,
    transparent 100%
  );
  transition: var(--transition);
}

.service-card:hover .service-card__overlay {
  background: linear-gradient(
    to top,
    rgba(169, 93, 82, 0.75) 0%,
    rgba(169, 93, 82, 0.25) 60%,
    transparent 100%
  );
}

.service-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  color: #fff;
}

.service-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  display: block;
}

.service-card__detail {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-top: 4px;
}

/* ── Section Headings ── */
.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-head .eyebrow {
  margin-bottom: 16px;
  display: block;
}

.section-head .display-lg {
  margin-bottom: 16px;
}

.section-head p {
  max-width: 46ch;
  margin: 0 auto;
  color: var(--text-mid);
  font-size: clamp(0.9rem, 2vw, 1rem);
}

/* ── Gallery Grid (Home teaser) ── */
.gallery-teaser {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.gallery-teaser__item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
  cursor: pointer;
}

.gallery-teaser__item:nth-child(1) { grid-column: span 7; grid-row: span 2; aspect-ratio: 3/2; }
.gallery-teaser__item:nth-child(2) { grid-column: span 5; aspect-ratio: 4/3; }
.gallery-teaser__item:nth-child(3) { grid-column: span 5; aspect-ratio: 4/3; }
.gallery-teaser__item:nth-child(4) { grid-column: span 4; aspect-ratio: 3/4; }
.gallery-teaser__item:nth-child(5) { grid-column: span 4; aspect-ratio: 3/4; }
.gallery-teaser__item:nth-child(6) { grid-column: span 4; aspect-ratio: 3/4; }

.gallery-teaser__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-teaser__item:hover img {
  transform: scale(1.04);
}

.gallery-teaser__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(169, 93, 82, 0);
  transition: var(--transition);
}

.gallery-teaser__item:hover::after {
  background: rgba(169, 93, 82, 0.12);
}

@media (max-width: 768px) {
  .gallery-teaser { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-teaser__item:nth-child(1) { grid-column: span 2; aspect-ratio: 4/3; }
  .gallery-teaser__item:nth-child(2),
  .gallery-teaser__item:nth-child(3) { grid-column: span 1; aspect-ratio: 1; }
  .gallery-teaser__item:nth-child(4),
  .gallery-teaser__item:nth-child(5),
  .gallery-teaser__item:nth-child(6) { grid-column: span 1; aspect-ratio: 1; }
}

/* ── Full Gallery Page ── */
.gallery-masonry {
  columns: 3;
  column-gap: 12px;
}

.gallery-masonry .gal-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}

.gallery-masonry .gal-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery-masonry .gal-item:hover img {
  transform: scale(1.03);
}

.gal-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(169, 93, 82, 0);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gal-item:hover .gal-item__overlay {
  background: rgba(169, 93, 82, 0.18);
}

.gal-zoom-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition);
  color: var(--dusty-rose);
}

.gal-item:hover .gal-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}

.filter-btn {
  padding: 8px 22px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--dusty-rose);
  border-color: var(--dusty-rose);
  color: #fff;
}

@media (max-width: 768px) {
  .gallery-masonry { columns: 2; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 2; }
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 8, 6, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox__img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transform: scale(0.92);
  transition: transform var(--transition);
}

.lightbox.open .lightbox__img-wrap img {
  transform: scale(1);
}

.lightbox__caption {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-style: italic;
  font-family: var(--font-display);
  margin-top: 12px;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color var(--transition);
}

.lightbox__close:hover { color: #fff; }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: var(--transition);
  font-size: 1.2rem;
}

.lightbox__nav:hover { background: rgba(255,255,255,0.2); }
.lightbox__prev { left: -70px; }
.lightbox__next { right: -70px; }

@media (max-width: 600px) {
  .lightbox__prev { left: 12px; }
  .lightbox__next { right: 12px; }
}

/* ── Process Section ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: var(--cream);
  position: relative;
  z-index: 1;
}

.process-step__num span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dusty-rose);
  font-style: italic;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── Quote / Testimonial ── */
.testimonial-block {
  background: linear-gradient(135deg, var(--blush), #f5d5cc);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 7vw, 80px) clamp(30px, 5vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-block::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 30px;
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(255,255,255,0.25);
  line-height: 1;
  pointer-events: none;
}

.testimonial-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.5;
  position: relative;
  margin-bottom: 24px;
}

.testimonial-block cite {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-style: normal;
}

/* ── About Page ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-split__img {
  position: relative;
}

.about-split__img-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-split__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split__img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 48%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--cream);
}

.about-split__img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split__content {
  padding: 20px 0;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.about-value {
  padding: 24px;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.about-value__icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: block;
}

.about-value h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.about-value p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split__img-accent { display: none; }
  .about-values { grid-template-columns: 1fr; }
}

/* ── Order / Enquiry Form ── */
.form-page-hero {
  background: linear-gradient(135deg, var(--blush) 0%, #f5ddd7 100%);
  padding: calc(72px + clamp(40px, 6vw, 80px)) 0 clamp(40px, 6vw, 80px);
  text-align: center;
}

.enquiry-form {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 64px);
  box-shadow: 0 4px 60px var(--shadow);
  max-width: 760px;
  margin: -40px auto 0;
  position: relative;
  z-index: 2;
}

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

.form-grid .full { grid-column: span 2; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group label .req {
  color: var(--dusty-rose);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b08a85' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(232, 168, 156, 0.15);
}

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

.form-submit-area {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-submit-area .btn {
  width: 100%;
  max-width: 320px;
  padding: 17px 32px;
  font-size: 0.82rem;
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
  font-family: var(--font-display);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success__icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-mid);
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: span 1; }
}

/* ── Contact Page ── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.contact-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--rose);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
}

.contact-card__icon {
  width: 56px;
  height: 56px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.5;
}

.contact-card a.link-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--blush);
  color: var(--deep-rose);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.contact-card a.link-pill:hover {
  background: var(--dusty-rose);
  color: #fff;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: calc(72px + clamp(40px, 6vw, 80px)) 0 clamp(40px, 6vw, 80px);
  text-align: center;
  background: linear-gradient(160deg, var(--blush) 0%, var(--cream) 100%);
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--text-dark);
  color: #fff;
  padding: clamp(60px, 10vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(169,93,82,0.4) 0%, transparent 70%);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner .script-accent {
  display: block;
  margin-bottom: 12px;
  color: var(--blush);
}

.cta-banner .display-lg {
  color: #fff;
  margin-bottom: 20px;
}

.cta-banner p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

/* ── Footer ── */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: clamp(50px, 8vw, 80px) 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: #fff;
  display: block;
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  font-style: italic;
  font-family: var(--font-display);
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--dusty-rose);
  border-color: var(--dusty-rose);
}

.footer__col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__col ul a:hover {
  color: var(--blush);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.78rem;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

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

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__brand { max-width: 100%; }
}

/* ── Placeholder image styles ── */
.img-placeholder {
  background: linear-gradient(135deg, var(--blush) 0%, var(--rose) 50%, var(--dusty-rose) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='rgba(255,255,255,0.05)' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='10'/%3E%3C/g%3E%3C/svg%3E");
}

.img-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.6;
}

.img-placeholder span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ── Animations / Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Page transitions ── */
.page { display: none; }
.page.active { display: block; }

/* ── Utility ── */
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }
.color-rose { color: var(--dusty-rose); }
.italic { font-style: italic; }

/* Separator */
.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rose), transparent);
  margin: 24px auto;
}
