/* ============================================================
   DOCTOR DRESS — style.css
   Wedding Sewing Studio · Edmonton Bridal Atelier
   ============================================================ */

/* ── TOKENS ── */
:root {
  --ivory:        #fdf8f2;
  --ivory-mid:    #f5ede0;
  --ivory-deep:   #ecdbc6;
  --champagne:    #e8d5b5;
  --gold:         #b8934a;
  --gold-light:   #d4ae72;
  --gold-pale:    #f0e4cc;
  --blush:        #e8d5d0;
  --charcoal:     #2c2825;
  --charcoal-mid: #4a4440;
  --charcoal-soft:#6b5f58;
  --text-body:    #5a4e47;
  --text-muted:   #8a7b72;

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Jost', system-ui, sans-serif;

  --max-w: 1200px;
  --section-py: clamp(5rem, 8vw, 9rem);
  --section-px: clamp(1.25rem, 5vw, 2.5rem);

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

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-sans);
  background: var(--ivory);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ── UTILITIES ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
}
.section { padding: var(--section-py) 0; }
.section--tinted { background: var(--ivory-mid); }
.desktop-br { display: none; }
@media (min-width: 768px) { .desktop-br { display: block; } }

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.section-label {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.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.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1em 2.6em;
  border-radius: 0;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn--primary {
  background: var(--gold);
  color: var(--ivory);
  border: 1px solid var(--gold);
}
.btn--primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn--ghost:hover {
  background: var(--charcoal);
  color: var(--ivory);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--ivory);
}
.btn--light {
  background: var(--ivory);
  color: var(--charcoal);
  border: 1px solid var(--ivory);
}
.btn--light:hover {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(255,255,255,0.6);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 248, 242, 0);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.4rem 0;
}
.nav.scrolled {
  background: rgba(253, 248, 242, 0.97);
  box-shadow: 0 1px 0 var(--ivory-deep);
  padding: 0.9rem 0;
  backdrop-filter: blur(8px);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.nav__logo-main {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav__logo-sub {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.nav__cta {
  background: var(--gold) !important;
  color: var(--ivory) !important;
  padding: 0.7em 1.5em;
  border: 1px solid var(--gold);
  transition: background var(--transition), color var(--transition) !important;
  font-size: 0.78rem !important;
}
.nav__cta:hover {
  background: var(--charcoal) !important;
  border-color: var(--charcoal) !important;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.3rem;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform var(--transition), opacity var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 88vw);
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    box-shadow: -4px 0 30px rgba(44,40,37,0.1);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: 99;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1rem; }
  .nav__cta { padding: 0.8em 1.8em !important; font-size: 0.9rem !important; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ivory);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.hero__shape--1 {
  width: 55vw;
  height: 55vw;
  background: radial-gradient(ellipse, rgba(184,147,74,0.10) 0%, transparent 70%);
  top: -10%;
  right: -15%;
}
.hero__shape--2 {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(ellipse, rgba(232,213,208,0.35) 0%, transparent 70%);
  bottom: 5%;
  left: -10%;
}
.hero__shape--3 {
  width: 25vw;
  height: 25vw;
  background: radial-gradient(ellipse, rgba(184,147,74,0.07) 0%, transparent 70%);
  top: 40%;
  left: 40%;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 6rem;
  max-width: 800px;
}
.hero__label {
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__headline {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.07;
  color: var(--charcoal);
  margin-bottom: 1.8rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-family: var(--ff-sans);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.8;
  color: var(--charcoal-soft);
  margin-bottom: 1.5rem;
}
.hero__body {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.8rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
/* hero__ornament removed */

/* ============================================================
   ABOUT
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: auto;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

/* Both columns always participate in layout */
.about__image-col,
.about__text-col {
  min-width: 0;
  width: 100%;
}

/* Image col on left, text col on right — matches HTML source order */
.about__image-col { order: 1; }
.about__text-col  { order: 2; }

/* Carousel wrapper fills the image column and maintains portrait ratio */
.about__image-frame {
  position: relative;
  width: 100%;
}
.about__carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.about__image-placeholder {
  width: 100%;
  aspect-ratio: 7 / 9;
  background: var(--ivory-mid);
  border: 1px solid var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
/* If a real <img> is placed inside .about__image-placeholder */
.about__image-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__image-placeholder svg {
  width: 70%;
  height: 70%;
}

.about__slide {
  display: none;
}
.about__slide--active {
  display: block;
}

.about__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: rgba(253,248,242,0.85);
  border: 1px solid var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal-soft);
  z-index: 2;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  backdrop-filter: blur(4px);
}
.about__carousel-btn:hover {
  background: var(--ivory);
  border-color: var(--gold);
  color: var(--gold);
}
.about__carousel-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.about__carousel-btn svg { width: 16px; height: 16px; }
.about__carousel-btn--prev { left: 8px; }
.about__carousel-btn--next { right: 8px; }

/* Text column */
.about__text-col .section-label { text-align: left; }
.about__text-col .section-title { text-align: left; margin-bottom: 1.8rem; }
.about__body {
  font-size: clamp(0.93rem, 1.2vw, 1rem);
  line-height: 1.95;
  color: var(--text-body);
  margin-bottom: 1.2rem;
}
.about__text-col .btn { margin-top: 1.2rem; }

/* about__image-caption removed per design cleanup */

/* Mobile: stack image above text */
@media (max-width: 860px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about__image-col {
    order: 1;
    max-width: 380px;
    margin: 0 auto;
  }
  .about__text-col {
    order: 2;
  }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--champagne);
  border: 1.5px solid var(--champagne);
}
@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .services__grid { grid-template-columns: 1fr; }
}
.service-card {
  background: var(--ivory-mid);
  padding: clamp(1.8rem, 3vw, 2.5rem);
  transition: background var(--transition), transform var(--transition);
  position: relative;
}
.service-card:hover {
  background: var(--ivory);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(44,40,37,0.06);
  z-index: 1;
}
.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.service-card__title {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.7rem;
}
.service-card__desc {
  font-size: clamp(0.88rem, 1.1vw, 0.95rem);
  line-height: 1.85;
  color: var(--text-muted);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 860px) {
  .process__steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .process__steps { grid-template-columns: 1fr; }
}
.process__step {
  padding: 2rem 2rem 2rem 0;
  position: relative;
}
.process__step-number {
  font-family: var(--ff-serif);
  font-size: 4.2rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 1;
  text-shadow: 0 2px 8px rgba(184,147,74,0.18);
}
.process__step-line {
  width: calc(100% - 2rem);
  height: 1px;
  background: linear-gradient(to right, var(--gold), var(--champagne));
  margin-bottom: 1.2rem;
}
.process__step-line--last {
  background: linear-gradient(to right, var(--gold), transparent);
}
.process__step-title {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.7rem;
}
.process__step-desc {
  font-size: clamp(0.88rem, 1.1vw, 0.95rem);
  line-height: 1.9;
  color: var(--text-muted);
  padding-right: 1rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__carousel {
  max-width: 780px;
  margin: 0 auto;
}
/* Stable-height stage: JS measures tallest card and pins height */
.testimonials__stage {
  position: relative;
  min-height: 280px; /* fallback before JS runs */
}
.testimonials__track {
  position: relative;
}
.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.testimonial-card.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.testimonial-card__quote {
  font-family: var(--ff-serif);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--gold);
  margin-bottom: 1.8rem;
  user-select: none;
  opacity: 0.55;
}
.testimonial-card__text {
  font-family: var(--ff-serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--charcoal-mid);
  margin-bottom: 2rem;
}
.testimonial-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}
.testimonial-card__name {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 3rem;
}
.testimonials__btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal-soft);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.testimonials__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
}
.testimonials__btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.testimonials__btn svg { width: 18px; height: 18px; }
.testimonials__dots {
  display: flex;
  gap: 0.5rem;
}
.testimonials__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--champagne);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.testimonials__dot.active {
  background: var(--gold);
  transform: scale(1.35);
}
.testimonials__dot:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ============================================================
   VALUES
   ============================================================ */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}
@media (max-width: 860px) { .values__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .values__grid { grid-template-columns: 1fr; } }
.value-item {
  padding: 2rem 0;
  border-top: 1px solid var(--ivory-deep);
}
.value-item__icon {
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.value-item__title {
  font-family: var(--ff-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.value-item__desc {
  font-size: clamp(0.88rem, 1.1vw, 0.95rem);
  line-height: 1.85;
  color: var(--text-muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  position: relative;
  background: var(--charcoal);
  color: var(--ivory);
  padding: var(--section-py) 0;
  overflow: hidden;
  text-align: center;
}
.contact__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.contact__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.contact__shape--1 {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(ellipse, rgba(184,147,74,0.18) 0%, transparent 70%);
  top: -20%;
  right: -10%;
}
.contact__shape--2 {
  width: 35vw;
  height: 35vw;
  background: radial-gradient(ellipse, rgba(184,147,74,0.10) 0%, transparent 70%);
  bottom: -15%;
  left: -5%;
}
.contact__inner { position: relative; z-index: 2; }
.contact__headline {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}
.contact__headline em {
  font-style: italic;
  color: var(--gold-light);
}
.contact__sub {
  font-family: var(--ff-sans);
  font-size: clamp(0.97rem, 1.4vw, 1.05rem);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(253,248,242,0.65);
  margin-bottom: 2.8rem;
}

/* Primary mobile action buttons */
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.8rem;
}
.contact__action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95em 2em;
  border: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), transform 0.2s ease;
}
.contact__action-btn:hover { transform: translateY(-1px); }
.contact__action-btn:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.contact__action-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__action-icon svg { width: 100%; height: 100%; }

.contact__action-btn--call {
  background: var(--gold);
  color: var(--ivory);
  border-color: var(--gold);
}
.contact__action-btn--call:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.contact__action-btn--sms {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(253,248,242,0.35);
}
.contact__action-btn--sms:hover {
  border-color: var(--ivory);
  background: rgba(253,248,242,0.07);
}
.contact__action-btn--whatsapp {
  background: transparent;
  color: #5fd476;
  border-color: rgba(95,212,118,0.35);
}
.contact__action-btn--whatsapp:hover {
  border-color: #5fd476;
  background: rgba(95,212,118,0.07);
}
.contact__action-btn--whatsapp .contact__action-icon svg {
  fill: #5fd476;
}

/* Secondary contact details */
.contact__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.contact__details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2.5rem;
}
.contact__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(253,248,242,0.65);
  transition: color var(--transition);
}
.contact__item:hover { color: var(--gold-light); }
.contact__item:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.contact__item-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.55;
}
.contact__item-icon svg { width: 100%; height: 100%; }

/* Studio hours */
.contact__hours {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 2.5rem;
  width: 100%;
  max-width: 420px;
}
.contact__hours-label {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.6rem;
  text-align: center;
}
.contact__hours-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact__hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 400;
}
.contact__hours-day {
  color: rgba(253,248,242,0.9);
  white-space: nowrap;
  font-weight: 500;
}
.contact__hours-time {
  color: rgba(253,248,242,0.75);
  white-space: nowrap;
}
.contact__hours-closed .contact__hours-day {
  color: rgba(253,248,242,0.5);
}
.contact__hours-closed .contact__hours-time {
  color: rgba(253,248,242,0.45);
  font-style: italic;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem 0;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer__name {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ivory);
}
.footer__tagline {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(253,248,242,0.35);
  margin-top: 0.2rem;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__links a {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253,248,242,0.45);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold-light); }
.footer__links a:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.footer__copy {
  font-family: var(--ff-sans);
  font-size: 0.67rem;
  color: rgba(253,248,242,0.25);
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}

/* ============================================================
   RESPONSIVE FINE-TUNING
   ============================================================ */
@media (max-width: 540px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .contact__actions { flex-direction: column; align-items: center; }
  .contact__action-btn { width: 100%; max-width: 280px; justify-content: center; }
  .contact__details { gap: 1rem 2rem; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__links { justify-content: flex-start; }
}

/* ============================================================
   DECORATIVE MOTIF SYSTEM
   Subtle background depth, side balance, and section variation.
   All accents are desktop-first; hidden or simplified on mobile.
   ============================================================ */

/* ── BASE: every .deco element is absolutely positioned,
         pointer-events none, non-interactive ── */
.deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.deco svg { display: block; }

/* ── Ensure sections that host deco elements are positioned ── */
.hero,
.contact { position: relative; overflow: hidden; }

/* About: positioned for deco elements, but overflow visible so grid
   columns are never clipped and align-items: center works correctly */
.about { position: relative; overflow: visible; }
.about .container { position: relative; }

/* ──────────────────────────────────────────────
   HERO decorative elements
   ────────────────────────────────────────────── */

/* Stronger blurred accent — satin-light feel, top right quadrant */
.hero__shape--4 {
  width: 38vw;
  height: 38vw;
  background: radial-gradient(ellipse, rgba(232,213,208,0.22) 0%, transparent 65%);
  top: 10%;
  right: 20%;
  filter: blur(80px);
}

/* Soft inner-shadow framing on image placeholder */
.about__image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 40px rgba(184,147,74,0.06);
  pointer-events: none;
  z-index: 1;
}

/* Corner accent lines removed per design cleanup */

/* ──────────────────────────────────────────────
   SERVICES — richer card treatment
   ────────────────────────────────────────────── */

/* Alternating every-other card gets a very faint warm tint */
.service-card:nth-child(even) {
  background: #f9f0e5;
}
.service-card:nth-child(even):hover {
  background: var(--ivory);
}

/* Top accent line on each card in gold */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(1.8rem, 3vw, 2.5rem);
  right: clamp(1.8rem, 3vw, 2.5rem);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-pale), transparent);
  opacity: 0.8;
}

/* ──────────────────────────────────────────────
   PROCESS — left-edge accent line
   ────────────────────────────────────────────── */
.process {
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--ivory-deep) 30%, var(--ivory-deep) 70%, transparent);
  display: none; /* desktop only */
}
.process::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--ivory-deep) 30%, var(--ivory-deep) 70%, transparent);
  display: none;
}

/* ──────────────────────────────────────────────
   TESTIMONIALS — radial glow background
   ────────────────────────────────────────────── */
.testimonials {
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(184,147,74,0.055) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  pointer-events: none;
}

/* ──────────────────────────────────────────────
   VALUES — soft right-side gradient wash
   ────────────────────────────────────────────── */
.values {
  position: relative;
}
.values::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30vw;
  height: 100%;
  background: linear-gradient(to left, rgba(232,213,208,0.12) 0%, transparent 100%);
  pointer-events: none;
  display: none;
}

/* ──────────────────────────────────────────────
   CONTACT decorative elements
   ────────────────────────────────────────────── */

/* Third, smaller glow — bottom centre atmosphere */
.contact__shape--3 {
  width: 60vw;
  height: 40vw;
  background: radial-gradient(ellipse, rgba(184,147,74,0.07) 0%, transparent 70%);
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(60px);
}

/* ──────────────────────────────────────────────
   SECTION DIVIDERS — hairline separators
   ────────────────────────────────────────────── */
.about,
.services,
.process,
.testimonials,
.values,
.contact {
  border-top: 1px solid transparent;
}
.about    { border-top-color: var(--ivory-deep); }
.services { border-top: none; }
.process  { border-top-color: var(--ivory-deep); }
.values   { border-top-color: var(--ivory-deep); }

/* ──────────────────────────────────────────────
   DESKTOP — reveal process/values accents
   ────────────────────────────────────────────── */
@media (min-width: 1024px) {
  .process::before    { display: block; }
  .process::after     { display: block; }
  .values::after      { display: block; }
}
