/* =====================================================================
   Shivam Silk Center — shared styles
   Palette derived from the brand logo: deep gold, temple maroon, black,
   ivory. Typography: Playfair Display (headings) + EB Garamond (body) +
   Noto Serif Tamil (Tamil review copy).
   ===================================================================== */

:root {
  --black: #1A1A1A;
  --maroon-deep: #2b1013;
  --maroon-deeper: #3a1216;
  --maroon: #7A1F2B;
  --maroon-hover: #9c2836;
  --gold-light: #F3D98A;
  --gold: #E8C766;
  --gold-dark: #B4881C;
  --gold-btn-2: #E8A93A;
  --ivory: #F7F0E1;
  --ivory-border: #e8dcc0;
  --ivory-panel: #F3E3B0;
  --text-body: #3a3a3a;
  --text-muted: #4a4a4a;
  --footer-text: #cbb98f;
  --footer-muted: #7a6b4d;
  --input-border: #d8c9a3;
  --whatsapp: #25D366;
  --font-display: 'Playfair Display', serif;
  --font-body: 'EB Garamond', 'Noto Serif Tamil', serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--black);
}

a { color: var(--maroon); }
a:hover { color: var(--maroon-hover); }

img { max-width: 100%; }

input, textarea, select, button {
  box-sizing: border-box;
  max-width: 100%;
  font-family: var(--font-body);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* -------------------------------------------------- silk sheen overlay */
.silk-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
  opacity: 0.55;
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.09) 0px, rgba(255,255,255,0.09) 2px, transparent 2px, transparent 46px),
    repeating-linear-gradient(115deg, rgba(0,0,0,0.06) 0px, rgba(0,0,0,0.06) 1px, transparent 1px, transparent 46px);
}

.topbar {
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--maroon));
}

/* -------------------------------------------------------------- nav */
.nav {
  background: var(--black);
  padding: 14px clamp(14px, 4vw, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3.2vw, 36px);
  border-bottom: 1px solid #332423;
  flex-wrap: wrap;
  position: relative;
}
.nav__logo {
  position: absolute;
  left: 24px;
  display: flex;
  align-items: center;
}
.nav__logo img { width: 48px; height: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3.2vw, 36px);
  flex-wrap: wrap;
  justify-content: center;
}
.nav__link {
  color: #cbb98f;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
}
.nav__link:hover { color: var(--gold-light); }
.nav__link.is-active { color: var(--gold-light); }

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--gold-dark);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__logo { position: static; margin-right: 4px; }
  .nav { justify-content: space-between; }
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid #332423;
    box-shadow: 0 12px 24px rgba(0,0,0,0.35);
    z-index: 200;
  }
  .nav__links.is-open { display: flex; }
  .nav__links .nav__link {
    display: block;
    padding: 16px 24px;
    text-align: center;
    border-top: 1px solid #262019;
  }
}
@media (max-width: 640px) {
  .nav__logo img { width: 40px; }
  input, textarea, select, button { font-size: 16px; }
  a[href^="tel:"], a[href^="https://wa.me"], form button, form input[type="submit"] { min-height: 44px; }
}

/* ---------------------------------------------------------- hero (home) */
.hero-home {
  position: relative;
  background: var(--black);
  padding: clamp(40px, 7vw, 64px) clamp(16px, 4vw, 24px) clamp(48px, 8vw, 80px);
  text-align: center;
  overflow: hidden;
}
.hero-home__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-home__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-home__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,26,26,0.72) 0%, rgba(43,16,19,0.6) 55%, rgba(58,18,22,0.55) 100%);
  z-index: 1;
}
.hero-home__glow {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background: radial-gradient(circle at 50% 0%, var(--gold) 0%, transparent 60%);
  z-index: 1;
}
.hero-home__content { position: relative; z-index: 2; }
.hero-home__logo { width: 110px; height: auto; margin-bottom: 16px; }
.hero-home__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: 0.5px;
  margin: 0;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-home__eyebrow {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-top: 4px;
  text-transform: uppercase;
}
.hero-home__lead {
  max-width: 620px;
  margin: 28px auto 0;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ivory);
}
.hero-home__actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* ------------------------------------------------------- hero (inner) */
.hero-inner {
  background: linear-gradient(160deg, var(--black) 0%, var(--maroon-deep) 60%, var(--maroon-deeper) 100%);
  padding: clamp(40px, 7vw, 64px) clamp(16px, 4vw, 24px) clamp(32px, 5vw, 48px);
  text-align: center;
}
.breadcrumb { font-size: 14px; margin-bottom: 14px; }
.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.breadcrumb__sep { color: var(--footer-muted); }
.breadcrumb__current { color: #cbb98f; }
.hero-inner__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.5vw, 46px);
  margin: 0;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-inner__eyebrow {
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-top: 10px;
  text-transform: uppercase;
}

.diamond-divider {
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 0;
}
.diamond-divider__line { width: 56px; height: 1px; background: var(--gold-dark); opacity: 0.5; }
.diamond-divider__dot { width: 8px; height: 8px; background: var(--gold-dark); transform: rotate(45deg); }

/* ---------------------------------------------------------- buttons */
.btn {
  text-decoration: none;
  display: inline-block;
  padding: 16px 32px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-family: var(--font-body);
}
.btn-primary { background: linear-gradient(180deg, var(--gold-light), var(--gold-dark)); color: var(--black); }
.btn-outline { border: 1px solid var(--gold); color: var(--gold-light); background: transparent; }
.btn-outline:hover { color: var(--gold); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-call { border: 1px solid var(--gold-dark); color: var(--maroon); background: transparent; }
.btn-whatsapp { background: linear-gradient(180deg, var(--gold-light), var(--gold-dark)); color: var(--black); }

/* ------------------------------------------------------------ layout */
.container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 24px); }
.section { padding: clamp(44px, 7vw, 72px) clamp(16px, 4vw, 24px); }
.section-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 4.2vw, 32px);
  margin: 0 0 8px;
}
.section-title--gold {
  font-weight: 700;
  font-size: clamp(26px, 4.6vw, 38px);
  color: var(--gold-dark);
}
.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold-dark);
  margin: 0 auto 40px;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

[data-reveal] { opacity: 0; transform: translateY(28px); }
[data-reveal].is-revealed { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }

/* --------------------------------------------------------- about split */
.split {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 72px) clamp(16px, 4vw, 24px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.split__frame { border: 1px solid var(--gold-dark); padding: 6px; }
.split__frame img {
  width: 100%;
  height: clamp(280px, 42vw, 420px);
  display: block;
  object-fit: cover;
}
.split__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  color: var(--black);
  margin-bottom: 20px;
}
.split__body { font-size: 17px; line-height: 1.75; color: var(--text-body); margin-bottom: 20px; }
.split__readmore { color: var(--maroon); font-weight: 600; text-decoration: none; font-size: 16px; }

/* ------------------------------------------------------------ stats */
.stats-band {
  background: var(--black);
  padding: clamp(36px, 6vw, 56px) clamp(16px, 4vw, 24px);
}
.stats-band__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 28px;
  text-align: center;
}
.stat__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 5vw, 40px);
  color: var(--gold);
  margin-bottom: 8px;
}
.stat__label {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--footer-text);
  text-transform: uppercase;
}

/* -------------------------------------------------------- timeline */
.timeline {
  background: #fff;
  padding: clamp(36px, 6vw, 56px) clamp(16px, 4vw, 24px);
  border-top: 1px solid var(--ivory-border);
  border-bottom: 1px solid var(--ivory-border);
}
.timeline__track {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.timeline__rule {
  position: absolute;
  top: 14px; left: 0; right: 0;
  height: 2px;
  background: var(--ivory-border);
}
.timeline__point { text-align: center; position: relative; z-index: 1; }
.timeline__dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  margin: 0 auto 10px;
}
.timeline__dot--start { background: var(--gold-dark); }
.timeline__dot--now { background: var(--maroon); }
.timeline__label { font-size: 15px; color: var(--text-muted); }

/* ---------------------------------------------------------- cards */
.card {
  background: #fff;
  border: 1px solid var(--ivory-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 16px 32px rgba(0,0,0,0.15); }
.card__img { width: 100%; height: 180px; display: block; object-fit: cover; }
.card__title { text-align: center; padding: 14px 10px; font-family: var(--font-display); font-size: 16px; }

.grid-sarees {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
}

/* ---------------------------------------------------- process highlights */
.process-band {
  background: #fff;
  border-top: 1px solid var(--ivory-border);
  border-bottom: 1px solid var(--ivory-border);
  padding: 36px 24px;
}
.process-band__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.process-item { display: flex; align-items: center; gap: 16px; }
.process-item__icon { flex-shrink: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
.process-item__title { font-weight: 600; font-size: 16px; color: var(--black); }
.process-item__subtitle { font-size: 14px; color: var(--footer-muted); margin-top: 2px; }

/* -------------------------------------------------------------- steps */
.steps {
  background: #fff;
  padding: clamp(44px, 7vw, 72px) clamp(16px, 4vw, 24px);
  border-top: 1px solid var(--ivory-border);
  border-bottom: 1px solid var(--ivory-border);
}
.steps__grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
.step { text-align: center; padding: 0 12px; }
.step__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.step__title { font-weight: 600; font-size: 20px; margin-bottom: 8px; }
.step__desc { font-size: 17px; color: var(--text-muted); line-height: 1.5; }

/* -------------------------------------------------------------- quote */
.quote-block { padding: 80px 24px; text-align: center; position: relative; }
.quote-block__flourish { margin-bottom: 28px; }
.quote-block__text {
  max-width: 680px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.6;
  font-style: italic;
  color: #2a1a1a;
}

/* ------------------------------------------------------------ reviews */
.reviews {
  background: #fff;
  padding: clamp(44px, 7vw, 72px) 0;
  border-top: 1px solid var(--ivory-border);
  border-bottom: 1px solid var(--ivory-border);
  overflow: hidden;
}
.reviews__title {
  padding: 0 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}
.reviews__viewport { overflow: hidden; }
.reviews__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollReviews 45s linear infinite;
}
.reviews__track:hover { animation-play-state: paused; }
@keyframes scrollReviews {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--ivory);
  border: 1px solid var(--ivory-border);
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover { transform: translateY(-8px); box-shadow: 0 16px 32px rgba(0,0,0,0.15); }
.review-card__stars { color: var(--gold-dark); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.review-card__quote { font-size: 15px; line-height: 1.6; color: var(--text-body); }
.review-card__meta { margin-top: 18px; display: flex; align-items: center; gap: 14px; }
.review-card__meta--stacked { margin-top: 16px; display: block; }
.review-card__avatar { width: 64px; height: 64px; flex-shrink: 0; object-fit: cover; object-position: top; border: 1px solid var(--gold-dark); }
.review-card__name { font-family: var(--font-display); color: var(--maroon); }
.review-card__city { font-size: 13px; color: #9a8a5f; }

/* --------------------------------------------------------------- form */
.form-section { max-width: 640px; margin: 0 auto; padding: 80px 24px; }
.form-section--tight { padding: 80px 24px 40px; }
.form-card { background: #fff; border: 1px solid var(--gold-dark); padding: 40px; }
.form-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 24px;
  text-align: center;
}
.form-fields { display: flex; flex-direction: column; gap: 18px; }
.form-fields input,
.form-fields textarea {
  padding: 12px 14px;
  border: 1px solid var(--input-border);
  font-size: 16px;
  background: var(--ivory);
  width: 100%;
}
.form-fields textarea { resize: vertical; min-height: 120px; }
.form-fields button {
  padding: 14px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  border: none;
  color: var(--black);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}
.form-note { font-size: 13px; color: var(--footer-muted); margin-top: 12px; text-align: center; }

/* --------------------------------------------------------------- FAQ */
.faq { max-width: 800px; margin: 0 auto; padding: clamp(44px, 7vw, 72px) clamp(16px, 4vw, 24px); }
.faq--contact { max-width: 820px; padding: clamp(40px, 7vw, 64px) clamp(16px, 4vw, 24px) 8px; }
.faq__list { display: flex; flex-direction: column; gap: 20px; }
.faq-item { border-bottom: 1px solid var(--ivory-border); padding-bottom: 20px; }
.faq-item__q { font-family: var(--font-display); font-size: 18px; color: var(--maroon); margin: 0 0 8px; }
.faq--contact .faq-item__q { font-size: 19px; font-weight: 600; }
.faq-item__a { font-size: 16px; color: var(--text-muted); line-height: 1.6; margin: 0; }
.faq--contact .faq-item__a { line-height: 1.65; }

/* ---------------------------------------------------------- CTA band */
.cta-band {
  background: linear-gradient(160deg, var(--maroon-deep), var(--black));
  padding: clamp(40px, 7vw, 64px) clamp(16px, 4vw, 24px);
  text-align: center;
}
.cta-band__text {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ivory);
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ------------------------------------------------------------ info strip (contact) */
.info-strip { background: #fff; padding: 48px 24px; border-bottom: 1px solid var(--ivory-border); }
.info-strip__grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.info-card {
  border: 1px solid var(--ivory-border);
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover { transform: translateY(-8px); box-shadow: 0 16px 32px rgba(0,0,0,0.15); }
.info-card__title { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.info-card__value { font-size: 15px; }

/* -------------------------------------------------------- location cards (contact) */
.locations-simple {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 24px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.location-simple-card {
  background: #fff;
  border: 1px solid var(--ivory-border);
  padding: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.location-simple-card:hover { transform: translateY(-8px); box-shadow: 0 16px 32px rgba(0,0,0,0.15); }
.location-simple-card__title { font-family: var(--font-display); font-size: 17px; color: var(--maroon); margin-bottom: 8px; }
.location-simple-card__address { font-size: 14px; line-height: 1.5; color: var(--text-body); }
.location-simple-card__phone { font-size: 14px; margin-top: 6px; color: var(--text-body); }
.location-simple-card__actions { display: flex; gap: 10px; margin-top: 14px; }
.location-simple-card__actions a { text-decoration: none; padding: 10px 18px; font-size: 14px; font-weight: 600; }

/* --------------------------------------------------------- our locations */
.locations {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 48px) clamp(16px, 4vw, 24px) 40px;
}
.locations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}
.locations__map-wrap { display: flex; }
.locations__map {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 4px;
}
.locations__card-wrap { display: flex; }
.location-card {
  background: var(--ivory-panel);
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.location-card:hover { transform: translateY(-8px); box-shadow: 0 16px 32px rgba(0,0,0,0.15); }
.location-card__title { font-family: var(--font-display); font-size: 20px; color: var(--maroon); }
.location-card__row { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--black); }
.location-card__row--address { align-items: flex-start; line-height: 1.5; }
.location-card__row svg { display: flex; }
.location-card__cta {
  margin-top: 4px;
  text-align: center;
  text-decoration: none;
  padding: 10px;
  background: var(--gold-btn-2);
  color: #fff;
  font-weight: 600;
  border-radius: 24px;
  font-size: 14px;
}

/* ------------------------------------------------------------- footer */
.footer {
  border-top: 4px solid var(--maroon);
  background: var(--black);
  padding: clamp(36px, 6vw, 56px) clamp(16px, 4vw, 24px) 0;
}
.footer__grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(28px, 4vw, 40px);
}
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer__brand img { width: 44px; height: auto; }
.footer__brand-name { font-family: var(--font-display); color: var(--gold); font-size: 19px; }
.footer__blurb { font-size: 15px; line-height: 1.6; color: var(--footer-text); }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  color: var(--gold);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.footer__social a:hover { background: var(--gold); color: var(--black); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__col-title {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: var(--ivory); text-decoration: none; font-size: 15px; }
.footer__areas { font-size: 15px; line-height: 1.8; color: var(--footer-text); }
.footer__phone { font-size: 15px; color: var(--ivory); margin-bottom: 8px; font-weight: 600; }
.footer__hours { font-size: 15px; color: var(--footer-text); }
.footer__copyright {
  max-width: 1160px;
  margin: 40px auto 0;
  border-top: 1px solid #332423;
  padding: 20px 0 28px;
  color: var(--footer-muted);
  font-size: 13px;
}
.footer__copyright a { color: var(--footer-text); text-decoration: underline; }
.footer__copyright a:hover { color: var(--gold); }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 100;
}

/* -------------------------------------------------------------- gallery */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 36px 24px 8px;
  flex-wrap: wrap;
}
.filter-chip {
  padding: 8px 20px;
  border: 1px solid var(--gold-dark);
  border-radius: 20px;
  font-size: 14px;
  color: var(--maroon);
  cursor: pointer;
  background: none;
  font-family: var(--font-body);
}
.filter-chip.is-active,
.filter-chip:hover { background: var(--gold-dark); color: #fff; }

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px clamp(16px, 4vw, 24px) clamp(48px, 8vw, 80px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.gallery-card {
  border: 1px solid var(--gold-dark);
  padding: 6px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-card:hover { transform: translateY(-8px); box-shadow: 0 16px 32px rgba(0,0,0,0.15); }
.gallery-card img {
  width: 100%;
  height: clamp(240px, 32vw, 320px);
  display: block;
  object-fit: cover;
}
.gallery-card__caption {
  text-align: center;
  padding: 14px 8px;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--black);
}

/* ---------------------------------------------------------------- blog */
.blog-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 64px) clamp(16px, 4vw, 24px) clamp(48px, 8vw, 80px);
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}
.blog-list { flex: 3 1 560px; display: flex; flex-direction: column; gap: 40px; }
.blog-post {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--ivory-border);
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-post:hover { transform: translateY(-8px); box-shadow: 0 16px 32px rgba(0,0,0,0.15); }
.blog-post__thumb { flex: 1 1 200px; min-width: 180px; height: 160px; display: block; object-fit: cover; }
.blog-post__body { flex: 2 1 280px; }
.blog-post__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.blog-post__tag {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--maroon);
  background: var(--ivory-panel);
  padding: 4px 10px;
  text-transform: uppercase;
  font-weight: 600;
}
.blog-post__date,
.blog-post__readtime { font-size: 13px; color: #9a8a5f; }
.blog-post__title { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin: 0 0 12px; line-height: 1.3; }
.blog-post__excerpt { font-size: 16px; color: var(--text-muted); margin: 0; line-height: 1.65; max-width: 52ch; }
.blog-post__readmore { margin-top: 14px; }
.blog-post__readmore a { color: var(--maroon); font-weight: 600; text-decoration: none; font-size: 15px; }

.blog-sidebar { flex: 1 1 240px; display: flex; flex-direction: column; gap: 24px; align-self: flex-start; }
.blog-sidebar h3 { font-family: var(--font-display); font-size: 18px; margin: 0 0 14px; }
.category-list { display: flex; flex-direction: column; gap: 10px; }
.category-list__item { font-size: 15px; color: var(--maroon); padding-bottom: 8px; border-bottom: 1px solid var(--ivory-border); }
.sidebar-cta { background: var(--black); padding: 28px 24px; text-align: center; }
.sidebar-cta__label { color: var(--ivory); font-size: 16px; margin-bottom: 16px; }
.sidebar-cta a {
  text-decoration: none;
  padding: 12px 20px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  color: var(--black);
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
}

/* -------------------------------------------------------- expertise (about) */
.expertise { padding: clamp(44px, 7vw, 72px) clamp(16px, 4vw, 24px); max-width: 1000px; margin: 0 auto; }
.expertise-title { font-size: clamp(23px, 4vw, 30px); }
.expertise__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 640px) {
  .expertise__grid { grid-template-columns: 1fr; }
}
.expertise-card { background: #fff; border: 1px solid var(--ivory-border); padding: 32px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.expertise-card:hover { transform: translateY(-8px); box-shadow: 0 16px 32px rgba(0,0,0,0.15); }
.expertise-card__title { font-family: var(--font-display); font-size: 20px; color: var(--maroon); margin-bottom: 12px; }
.expertise-card__body { font-size: 17px; line-height: 1.6; color: var(--text-body); }
