/* ============================================================
   SANDY SMITH — SPIRITUAL SANCTUARY
   Master Stylesheet
   ============================================================ */

@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=Raleway:wght@200;300;400;500&family=Cormorant:ital,wght@1,400;1,500&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  /* Core Palette */
  --ivory:        #F8F4ED;
  --cream:        #EFE6DA;
  --silver:       #D9D7E0;
  --lavender:     #C8B8D8;
  --sage:         #A9B7A5;

  /* Accents */
  --gold:         #C8A97E;
  --gold-light:   #DFC09A;
  --rose:         #D8B7A3;
  --taupe:        #B8A08C;
  --taupe-dark:   #8C7A6B;

  /* Neutral Depths */
  --warm-dark:    #3A322A;
  --mid-brown:    #6B5B4E;
  --soft-text:    #5C5149;
  --faint-text:   #9E8E82;

  /* Functional */
  --bg:           #F8F4ED;
  --card-bg:      rgba(248, 244, 237, 0.85);
  --overlay:      rgba(58, 50, 42, 0.38);
  --glass:        rgba(239, 230, 218, 0.55);
  --glass-border: rgba(200, 169, 126, 0.25);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-italic:  'Cormorant', 'Georgia', serif;
  --font-body:    'Raleway', sans-serif;

  /* Spacing */
  --section-pad:  120px;
  --container:    1180px;

  /* Transitions */
  --ease-silk:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bloom:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--soft-text);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ============================================================
   SELECTION
   ============================================================ */
::selection {
  background: rgba(200, 169, 126, 0.25);
  color: var(--warm-dark);
}

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--warm-dark);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.4rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.8rem); }
h5 { font-size: 1.2rem; }

p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--soft-text);
}

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

.italic-accent {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--taupe-dark);
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   ORNAMENT DIVIDER
   ============================================================ */
.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin: 20px 0;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ornament-symbol {
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.8;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.5s var(--ease-silk);
}

.nav.scrolled {
  background: rgba(248, 244, 237, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 30px rgba(58, 50, 42, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--warm-dark);
  letter-spacing: 0.06em;
  line-height: 1;
}

.nav-logo-title {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft-text);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-silk);
  transform-origin: center;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
  color: var(--warm-dark) !important;
  border: 1px solid var(--gold);
  padding: 9px 22px;
  border-radius: 1px;
  transition: all 0.35s var(--ease-silk) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--ivory) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  width: 24px;
  height: 1px;
  background: var(--warm-dark);
  transition: all 0.3s;
  display: block;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248, 244, 237, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease-bloom);
}

.nav-mobile.open {
  transform: translateY(0);
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--warm-dark);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.nav-mobile a:hover {
  color: var(--gold);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--warm-dark);
  color: rgba(248, 244, 237, 0.7);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(200, 169, 126, 0.2);
  margin-bottom: 40px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ivory);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.footer-brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(248, 244, 237, 0.6);
  line-height: 1.8;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(248, 244, 237, 0.6);
  transition: color 0.3s;
  letter-spacing: 0.03em;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(248, 244, 237, 0.6);
  line-height: 1.9;
}

.footer-contact a {
  color: rgba(248, 244, 237, 0.6);
  transition: color 0.3s;
}
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(248, 244, 237, 0.35);
  letter-spacing: 0.05em;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 244, 237, 0.4);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-silk);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-silk);
}
.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: var(--gold);
  color: var(--ivory);
}

.btn-primary:hover {
  background: var(--taupe-dark);
}

.btn-outline {
  background: transparent;
  color: var(--warm-dark);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--ivory);
}

.btn-light {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(248, 244, 237, 0.5);
}

.btn-light:hover {
  background: rgba(248, 244, 237, 0.15);
  border-color: var(--gold);
}

.btn-arrow::after {
  content: '→';
  font-size: 0.9em;
  transition: transform 0.3s;
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ============================================================
   PARTICLES CANVAS
   ============================================================ */
#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   HERO (HOME)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #F3EBE0 0%,
    #EDE1D4 25%,
    #E6DAEA 55%,
    #DDD5E8 75%,
    #E8E0D5 100%
  );
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200, 169, 126, 0.18) 0%, transparent 70%);
}

.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200, 184, 216, 0.22) 0%, transparent 70%);
}

.hero-glow-3 {
  position: absolute;
  top: 30%;
  left: 30%;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(248, 244, 237, 0.4) 0%, transparent 60%);
}

/* Texture grain overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px 40px 100px;
}

.hero-content {
  max-width: 540px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-bloom) 0.2s forwards;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--warm-dark);
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 1.1s var(--ease-bloom) 0.35s forwards;
}

.hero-title em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--taupe-dark);
  display: block;
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--mid-brown);
  margin-bottom: 44px;
  max-width: 440px;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-bloom) 0.5s forwards;
}

.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-bloom) 0.65s forwards;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 70px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint-text);
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}

.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  animation: expandLine 1.5s var(--ease-bloom) 1.5s forwards;
  transform-origin: left;
  transform: scaleX(0);
}

/* Portrait */
.hero-portrait {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 0;
  animation: fadeIn 1.4s var(--ease-bloom) 0.6s forwards;
}

.portrait-frame {
  position: relative;
  width: 420px;
  height: 540px;
}

.portrait-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 126, 0.3);
  animation: rotateRing 20s linear infinite;
}

.portrait-ring-1 {
  inset: -30px;
  animation-duration: 30s;
}

.portrait-ring-2 {
  inset: -55px;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 45s;
  opacity: 0.5;
}

.portrait-image {
  width: 100%;
  height: 100%;
  border-radius: 220px 220px 200px 200px;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    #EDE0D4 0%,
    #DDD0E0 40%,
    #D4C8D8 70%,
    #CBBBA8 100%
  );
  position: relative;
  box-shadow:
    0 30px 80px rgba(58, 50, 42, 0.15),
    0 10px 30px rgba(58, 50, 42, 0.1),
    inset 0 0 60px rgba(200, 169, 126, 0.08);
}

.portrait-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 40px;
}

.portrait-initials {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(58, 50, 42, 0.15);
  font-weight: 300;
  letter-spacing: 0.1em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}

.portrait-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(200, 169, 126, 0.3) 0%, transparent 70%);
  filter: blur(20px);
}

.portrait-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--ivory);
  border: 1px solid var(--glass-border);
  padding: 16px 22px;
  border-radius: 2px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(58, 50, 42, 0.1);
}

.portrait-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--warm-dark);
  line-height: 1;
}

.portrait-badge-text {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  display: block;
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--warm-dark);
  padding: 28px 0;
  overflow: hidden;
}

.intro-strip-inner {
  display: flex;
  gap: 60px;
  align-items: center;
  white-space: nowrap;
  animation: scrollStrip 20s linear infinite;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.strip-symbol {
  color: var(--gold);
  font-size: 1.2rem;
}

.strip-text {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 244, 237, 0.7);
}

/* ============================================================
   SECTION STYLES
   ============================================================ */
.section {
  padding: var(--section-pad) 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}

.section-header h2 {
  margin: 12px 0 20px;
}

.section-header p {
  font-size: 1rem;
  color: var(--mid-brown);
  line-height: 1.8;
}

/* ============================================================
   ABOUT TEASER (HOME)
   ============================================================ */
.about-teaser {
  background: var(--cream);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.about-teaser::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200, 169, 126, 0.1) 0%, transparent 70%);
}

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

.about-image-block {
  position: relative;
}

.about-image-main {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #DDD4C8 0%, #C8BECC 50%, #BFBDD0 100%);
  border-radius: 200px 200px 160px 160px;
  position: relative;
  overflow: hidden;
}

.about-image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #E8D9CA 0%, #D5C8D8 100%);
  border-radius: 50%;
  border: 6px solid var(--cream);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(58, 50, 42, 0.12);
}

.about-image-ornament {
  position: absolute;
  top: 30px;
  left: -40px;
  width: 80px;
  height: 80px;
}

.about-image-ornament svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  stroke-width: 0.5;
  fill: none;
  opacity: 0.6;
}

.about-content {
  max-width: 520px;
}

.about-quote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.55rem;
  color: var(--taupe-dark);
  line-height: 1.5;
  margin: 24px 0 30px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

.about-content p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* ============================================================
   SERVICES OVERVIEW
   ============================================================ */
.services-overview {
  background: var(--bg);
  padding: var(--section-pad) 0;
}

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

.service-card {
  position: relative;
  padding: 50px 40px;
  background: var(--cream);
  overflow: hidden;
  transition: all 0.5s var(--ease-silk);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(200, 169, 126, 0.05),
    rgba(200, 184, 216, 0.08)
  );
  opacity: 0;
  transition: opacity 0.5s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--lavender));
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-silk);
  transform-origin: left;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(58, 50, 42, 0.08);
}

.service-symbol {
  font-size: 2rem;
  margin-bottom: 24px;
  display: block;
}

.service-card h4 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--warm-dark);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--mid-brown);
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-link {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 14px;
}

/* ============================================================
   TESTIMONIAL PREVIEW (HOME)
   ============================================================ */
.testimonials-preview {
  background: var(--warm-dark);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.testimonials-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 169, 126, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(200, 184, 216, 0.08) 0%, transparent 50%);
}

.testimonials-preview .section-header h2,
.testimonials-preview .section-header .eyebrow {
  color: var(--gold);
}

.testimonials-preview .section-header p {
  color: rgba(248, 244, 237, 0.6);
}

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slide {
  text-align: center;
  padding: 0 40px;
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.6s var(--ease-silk);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 30px;
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.5;
  color: rgba(200, 169, 126, 0.2);
  margin-bottom: 20px;
  display: block;
}

.testimonial-text {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.35rem;
  color: rgba(248, 244, 237, 0.88);
  line-height: 1.65;
  margin-bottom: 36px;
}

.testimonial-author {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.t-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(248, 244, 237, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.t-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #EDE5D8 0%, #DDD2E4 50%, #E8E0D5 100%);
  overflow: hidden;
  text-align: center;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(200, 169, 126, 0.15) 0%, transparent 60%);
}

.cta-band-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 40px;
}

.cta-band h2 {
  margin-bottom: 18px;
}

.cta-band p {
  font-size: 1rem;
  color: var(--mid-brown);
  margin-bottom: 40px;
  line-height: 1.8;
}

/* ============================================================
   PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 200px 0 100px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    #F0E9DF 0%,
    #EAE0EE 50%,
    #E5DED8 100%
  );
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200, 169, 126, 0.15) 0%, transparent 70%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 40px;
}

.page-hero h1 {
  margin: 14px 0 22px;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--mid-brown);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  padding: var(--section-pad) 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.about-story-image {
  position: sticky;
  top: 120px;
}

.about-main-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #DDD4C8, #C8BECC, #BFBDD0);
  border-radius: 180px 180px 140px 140px;
  overflow: hidden;
}

.about-image-caption {
  margin-top: 24px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--faint-text);
  text-align: center;
}

.about-story-content .eyebrow {
  margin-bottom: 16px;
  display: block;
}

.about-story-content h2 {
  margin-bottom: 30px;
}

.about-story-content p {
  margin-bottom: 22px;
  font-size: 0.95rem;
  line-height: 1.9;
}

.about-pull-quote {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 28px 30px;
  margin: 40px 0;
  border-radius: 0 4px 4px 0;
}

.about-pull-quote p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--taupe-dark);
  line-height: 1.6;
  margin: 0;
}

.about-gifts {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.gifts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.gift-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg);
  border-radius: 2px;
  transition: all 0.4s var(--ease-silk);
}

.gift-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(58, 50, 42, 0.08);
}

.gift-symbol {
  font-size: 2.4rem;
  margin-bottom: 20px;
  display: block;
}

.gift-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.gift-card p {
  font-size: 0.85rem;
  color: var(--mid-brown);
  line-height: 1.75;
}

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

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.philosophy-text h2 {
  margin-bottom: 28px;
}

.philosophy-text p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.9;
}

.philosophy-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.value-item {
  padding: 28px;
  background: var(--cream);
  border-top: 2px solid var(--gold);
  transition: all 0.4s var(--ease-silk);
}

.value-item:hover {
  background: var(--bg);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(58, 50, 42, 0.06);
}

.value-symbol {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: block;
}

.value-item h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--warm-dark);
}

.value-item p {
  font-size: 0.82rem;
  color: var(--mid-brown);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-featured {
  padding: var(--section-pad) 0;
}

.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid rgba(184, 160, 140, 0.2);
}

.service-feature:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-feature.reverse {
  direction: rtl;
}

.service-feature.reverse > * {
  direction: ltr;
}

.service-feature-image {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #E8DDD0, #D5CCDA, #CCC4D4);
  border-radius: 160px 160px 120px 120px;
  position: relative;
  overflow: hidden;
}

.service-feature-image::after {
  content: attr(data-symbol);
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 3rem;
  opacity: 0.3;
}

.service-feature-content .eyebrow {
  margin-bottom: 12px;
  display: block;
}

.service-feature-content h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-bottom: 22px;
}

.service-feature-content p {
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 18px;
}

.service-includes {
  margin: 30px 0;
}

.service-includes-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.service-includes ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.service-includes li {
  font-size: 0.85rem;
  color: var(--mid-brown);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-includes li::before {
  content: '◦';
  color: var(--gold);
}

.service-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
}

.price-from {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint-text);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--warm-dark);
  line-height: 1;
}

/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */
.testimonials-section {
  padding: var(--section-pad) 0;
}

.testimonials-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.t-card {
  background: var(--cream);
  padding: 40px 36px;
  position: relative;
  transition: all 0.4s var(--ease-silk);
  border-bottom: 2px solid transparent;
}

.t-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(58, 50, 42, 0.08);
  border-bottom-color: var(--gold);
}

.t-card-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.t-card-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.6;
  color: rgba(200, 169, 126, 0.3);
  margin-bottom: 16px;
}

.t-card-text {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--soft-text);
  margin-bottom: 28px;
  font-style: italic;
  font-family: var(--font-display);
}

.t-card-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--warm-dark);
  flex-shrink: 0;
}

.t-author-name {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--warm-dark);
}

.t-author-source {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.t-card.featured {
  background: var(--warm-dark);
  grid-column: span 2;
}

.t-card.featured .t-card-text {
  font-size: 1.15rem;
  color: rgba(248, 244, 237, 0.85);
  line-height: 1.7;
}

.t-card.featured .t-author-name {
  color: var(--ivory);
}

.t-card.featured .t-card-quote {
  color: rgba(200, 169, 126, 0.25);
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-section {
  padding: var(--section-pad) 0;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(184, 160, 140, 0.2);
}

.blog-featured-image {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #E0D5C8, #CEC5D4, #C8C0D0);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.blog-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58, 50, 42, 0.4), transparent 60%);
}

.blog-featured-content .eyebrow {
  margin-bottom: 14px;
  display: block;
}

.blog-featured-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 18px;
  line-height: 1.2;
}

.blog-featured-content p {
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 30px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.blog-tag {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200, 169, 126, 0.12);
  padding: 4px 12px;
  border-radius: 1px;
}

.blog-date {
  font-size: 0.72rem;
  color: var(--faint-text);
  letter-spacing: 0.08em;
}

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

.blog-card {
  cursor: pointer;
  transition: all 0.4s var(--ease-silk);
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card-image {
  aspect-ratio: 3/2;
  background: linear-gradient(135deg, var(--silver), var(--lavender));
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}

.blog-card-image::before {
  content: attr(data-symbol);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  opacity: 0.3;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-card h4 {
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.blog-card:hover h4 {
  color: var(--gold);
}

.blog-card p {
  font-size: 0.85rem;
  color: var(--mid-brown);
  line-height: 1.75;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: var(--section-pad) 0;
}

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

.contact-info h3 {
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}

.contact-detail-value {
  font-size: 0.9rem;
  color: var(--soft-text);
}

.contact-detail-value a {
  color: var(--soft-text);
  transition: color 0.3s;
}

.contact-detail-value a:hover {
  color: var(--gold);
}

.contact-form-wrap {
  background: var(--cream);
  padding: 56px;
  border-radius: 2px;
}

.form-header {
  margin-bottom: 40px;
}

.form-header h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.form-header p {
  font-size: 0.88rem;
  color: var(--mid-brown);
}

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

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

label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid rgba(184, 160, 140, 0.3);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--warm-dark);
  font-weight: 300;
  border-radius: 1px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.1);
}

textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.7;
}

select {
  appearance: none;
  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='%23B8A08C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-submit {
  margin-top: 36px;
}

.form-note {
  font-size: 0.75rem;
  color: var(--faint-text);
  margin-top: 14px;
  display: block;
  text-align: center;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-silk), transform 0.8s var(--ease-silk);
}

.reveal.revealed {
  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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes expandLine {
  to { transform: scaleX(1); }
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes scrollStrip {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 0.7; }
  100% { transform: translateY(-100vh) scale(0); opacity: 0; }
}

@keyframes shimmer {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(200, 169, 126, 0.2); }
  50% { box-shadow: 0 0 40px rgba(200, 169, 126, 0.4); }
}

/* ============================================================
   MOON DECORATION
   ============================================================ */
.moon-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 24px 0;
}

.moon-phase {
  font-size: 1.2rem;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.moon-phase:nth-child(3) {
  opacity: 1;
  font-size: 1.5rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 90px; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-content {
    max-width: 100%;
    order: 1;
  }

  .hero-portrait {
    order: 2;
  }

  .hero-eyebrow, .hero-actions, .hero-scroll {
    justify-content: center;
  }

  .hero-subtitle {
    margin: 0 auto 44px;
  }

  .portrait-frame {
    width: 320px;
    height: 400px;
  }

  .about-teaser-grid,
  .about-story-grid,
  .philosophy-inner,
  .service-feature,
  .contact-grid,
  .blog-featured {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .service-feature.reverse {
    direction: ltr;
  }

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

  .gifts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-masonry {
    grid-template-columns: repeat(2, 1fr);
  }

  .t-card.featured {
    grid-column: span 2;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-story-image {
    position: static;
  }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px; }

  .container { padding: 0 24px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }

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

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

  .testimonials-masonry,
  .t-card.featured {
    grid-template-columns: 1fr;
    grid-column: span 1;
  }

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

  .contact-form-wrap {
    padding: 36px 28px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .philosophy-values {
    grid-template-columns: 1fr;
  }

  .service-includes ul {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 120px;
  }
}

@media (max-width: 480px) {
  .portrait-frame {
    width: 260px;
    height: 320px;
  }

  .portrait-badge {
    right: 0;
    bottom: -10px;
  }
}


.about-image-main {
  position: relative;
  overflow: hidden;
}

.image-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}