:root {
  --cream: #faf6ec;
  --cream-deep: #f1ead7;
  --copper: #a44217;
  --copper-light: #c45a25;
  --ink: #1a1208;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream); }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.page { position: relative; min-height: 100vh; color: var(--ink); }

/* ── Animated backdrop ── */
.bg-backdrop {
  position: fixed; inset: 0; z-index: -10;
  overflow: hidden; background: var(--cream);
}
.bg-logo {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
  filter: drop-shadow(0 0 30px rgba(164, 66, 23, 0.25));
}
.bg-logo.spin     { animation: slow-spin 60s linear infinite; }
.bg-logo.spin-rev { animation: reverse-spin 80s linear infinite; }
.bg-logo.bob      { animation: gentle-bob 9s ease-in-out infinite; }
.bg-logo.drift    { animation: float-drift 30s ease-in-out infinite; }
.bg-logo.pulse    { animation: pulse-soft 7s ease-in-out infinite; }
.bg-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(250,246,236,0.4) 60%, var(--cream) 100%);
}

@keyframes slow-spin    { to { transform: rotate(360deg); } }
@keyframes reverse-spin { to { transform: rotate(-360deg); } }
@keyframes gentle-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(6deg); }
}
@keyframes float-drift {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(20px, -30px) rotate(180deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}
@keyframes pulse-soft {
  0%, 100% { opacity: 0.06; transform: scale(1); }
  50%      { opacity: 0.12; transform: scale(1.08); }
}

/* ── Fade-in-up (page load) ── */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-in-up 1.1s cubic-bezier(0.16,1,0.3,1) both; }

/* ── Hero logo float ── */
@keyframes hero-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%      { transform: translate3d(0, -14px, 0) rotate(2deg); }
}
.hero-logo-anim {
  transform-origin: center;
  animation: hero-float 8s ease-in-out infinite;
  will-change: transform;
}

/* ── Scroll-reveal ── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(34rem, 70vw);
  height: min(34rem, 70vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(196,90,37,0.16) 0%, rgba(196,90,37,0.07) 36%, transparent 68%);
  transform: translate(-50%, -66%);
  pointer-events: none;
  animation: aura-pulse 5.5s ease-in-out infinite;
}
.hero > * { position: relative; z-index: 2; }

.hero-logo {
  width: 14rem;
  margin-bottom: 2rem;
  image-rendering: auto;
  backface-visibility: hidden;
}
@media (min-width: 768px)  { .hero-logo { width: 17rem; } }
@media (min-width: 1024px) { .hero-logo { width: 20rem; } }

@keyframes aura-pulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -66%) scale(0.96); }
  50%      { opacity: 0.9;  transform: translate(-50%, -66%) scale(1.04); }
}

.hero-title {
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-size: 3rem;
  letter-spacing: 0.18em;
  margin: 0;
  color: var(--ink);
}
@media (min-width: 768px)  { .hero-title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 6rem; } }

.hero-sub {
  font-style: italic;
  font-size: 1.5rem;
  color: rgba(26,18,8,0.8);
  margin: 0.75rem 0 0;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) { .hero-sub { font-size: 1.875rem; } }

.hero-tagline { margin-top: 3rem; max-width: 48rem; }
.hero-tagline::before {
  content: "";
  display: block;
  width: 7.5rem;
  height: 1px;
  margin: 0 auto 1.75rem;
  background: linear-gradient(90deg, transparent, rgba(164,66,23,0.58), transparent);
}
.hero-tagline h2 {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  letter-spacing: 0.22em;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
}
@media (min-width: 768px)  { .hero-tagline h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .hero-tagline h2 { font-size: 3rem; } }

.tagline-divider {
  margin-top: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; color: var(--copper);
}
.tagline-divider .line   { height: 1px; width: 3rem; background: rgba(164,66,23,0.4); }
.tagline-divider .italic { font-style: italic; font-size: 1.125rem; }

.hero-cta {
  margin-top: 2.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: center;
}

/* ── Buttons ── */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  font-family: inherit;
}
.btn::after {
  content: "";
  position: absolute;
  inset: -20% auto -20% -60%;
  width: 45%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
  transition: left 0.55s cubic-bezier(0.16,1,0.3,1);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 0.75rem 1.6rem rgba(164,66,23,0.12); }
.btn:hover::after { left: 120%; }
.btn-filled  { background: var(--copper); color: var(--cream); border: 1px solid var(--copper); }
.btn-filled:hover { background: var(--copper-light); border-color: var(--copper-light); }
.btn-outline { border: 1px solid var(--copper); color: var(--copper); background: transparent; }
.btn-outline:hover { background: var(--copper); color: var(--cream); }

.hero-note {
  max-width: 58rem;
  margin: 2rem auto 0;
  color: rgba(26,18,8,0.76);
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.48;
}
.hero-note span { display: block; }

.hero-scroll {
  position: absolute; bottom: 1.5rem;
  font-size: 0.75rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(164,66,23,0.7);
}

/* ── CONTACT ── */
.contact { position: relative; padding: 3.5rem 1.5rem; }
.contact-inner { position: relative; max-width: 48rem; margin: 0 auto; text-align: center; }
.contact-label { font-style: italic; font-size: 3rem; margin: 0 0 1.5rem; }
.contact-phone {
  display: block; font-size: 1.5rem; color: var(--ink);
  margin-bottom: 1.25rem; transition: color 0.25s;
}
@media (min-width: 768px) { .contact-phone { font-size: 1.875rem; } }
.contact-phone:hover { color: var(--copper); }

.contact-email {
  display: block; font-size: 1.25rem; color: var(--ink);
  margin-bottom: 2.5rem; transition: color 0.25s;
  word-break: break-all;
}
@media (min-width: 768px) { .contact-email { font-size: 1.5rem; } }
.contact-email:hover { color: var(--copper); }

.socials { display: flex; gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
.social {
  width: 3rem; height: 3rem; border-radius: 9999px;
  border: 1px solid rgba(26,18,8,0.8);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.social svg { width: 1.25rem; height: 1.25rem; }
.social:hover {
  background: var(--copper); border-color: var(--copper); color: var(--cream);
  transform: translateY(-3px); box-shadow: 0 0.75rem 1.5rem rgba(164,66,23,0.16);
}

.handle { margin-top: 1.5rem; color: var(--copper); font-size: 1.125rem; letter-spacing: 0.05em; }

/* ── thin section divider ── */
.section-divider {
  width: min(24rem, 60vw);
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(164,66,23,0.3), transparent);
}

/* ── TESTIMONIALS ── */
.testimonials { position: relative; padding: 3.5rem 1.5rem 5rem; }
.testimonials-inner { position: relative; max-width: 64rem; margin: 0 auto; }
.testimonials-head { text-align: center; margin-bottom: 3.5rem; }
.eyebrow {
  font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--copper); margin: 0 0 0.75rem;
}
.t-title {
  font-family: "Cinzel", serif; font-size: 2.25rem;
  letter-spacing: 0.18em; color: var(--ink); margin: 0; font-weight: 400;
}
@media (min-width: 768px) { .t-title { font-size: 3rem; } }

.rating-row {
  margin-top: 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  flex-wrap: wrap;
}
.stars-lg { display: flex; gap: 0.25rem; color: var(--copper); }
.stars-lg svg { width: 1.5rem; height: 1.5rem; }
.rating-text { font-style: italic; font-size: 1.125rem; color: rgba(26,18,8,0.8); }

.t-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .t-grid { grid-template-columns: 1fr 1fr; } }

.t-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(164,66,23,0.3);
  background: rgba(250,246,236,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1.75rem;
  display: flex; flex-direction: column;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1),
              border-color 0.25s, box-shadow 0.25s;
}
.t-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.36) 50%, transparent 78%);
  transform: translateX(-120%);
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.t-card.is-visible { opacity: 1; transform: translateY(0); }
.t-card:hover { border-color: rgba(164,66,23,0.5); box-shadow: 0 1rem 2.5rem rgba(164,66,23,0.11); }
.t-card:hover::before { transform: translateX(120%); }

.t-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.t-name { font-family: "Cinzel", serif; font-size: 1.125rem; letter-spacing: 0.05em; margin: 0; color: var(--ink); }
.t-date { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(26,18,8,0.5); margin: 0.25rem 0 0; }
.t-stars { display: flex; gap: 0.125rem; color: var(--copper); }
.t-stars svg { width: 1rem; height: 1rem; }
.t-text { color: rgba(26,18,8,0.85); font-style: italic; line-height: 1.6; margin: 0; }

.t-cta { margin-top: 3rem; text-align: center; }
.footer-line {
  margin-top: 4rem; text-align: center;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em;
  color: rgba(26,18,8,0.5);
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
    padding: 4rem 1rem 4.5rem;
  }
  .hero-logo { width: 11rem; }
  .hero-title {
    font-size: clamp(2.25rem, 12vw, 3rem);
    letter-spacing: 0.12em;
  }
  .hero-tagline h2 {
    font-size: clamp(1.25rem, 7vw, 1.65rem);
    letter-spacing: 0.14em;
  }
  .hero-note {
    margin-top: 1.5rem;
    font-size: 1.08rem;
    line-height: 1.45;
  }
  .contact { padding: 2.5rem 1rem; }
  .testimonials { padding: 2.5rem 1rem 4rem; }
  .footer-line { letter-spacing: 0.18em; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .t-card, .scroll-reveal { opacity: 1; transform: none; transition: none; }
}
