/* =============================================
   J&C Jewellery — Custom Stylesheet
   Brand: Minimal. Elegant. Premium. Trustworthy.
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200;0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;1,6..12,300;1,6..12,400;1,6..12,500&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  --bg:         #FAF8F5;
  --bg-alt:     #F2EDE4;
  --text:       #2C2C2C;
  --text-light: #6B6B6B;
  --gold:       #C9A96E;
  --gold-dark:  #A67C52;
  --gold-light: #E8D5B0;
  --white:      #FFFFFF;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Raleway', Arial, sans-serif;
  --transition: 0.35s ease;
  --radius:     4px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.75;
  font-size: 1rem;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  color: var(--text);
  font-weight: 500;
  line-height: 1.25;
}

p { color: var(--text-light); margin-bottom: 1rem; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

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

section { padding: 100px 0; }

/* ---------- Gold Divider ---------- */
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 16px auto 28px;
}
.divider-left {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 16px 0 28px;
}

/* ---------- Section Label ---------- */
.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

/* ---------- Buttons ---------- */
.btn-gold {
  display: inline-block;
  padding: 12px 34px;
  background: var(--gold);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

.btn-outline-gold {
  display: inline-block;
  padding: 12px 34px;
  background: transparent;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--text);
}

.btn-outline-light {
  display: inline-block;
  padding: 12px 34px;
  background: transparent;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}

/* ---------- Navbar ---------- */
#mainNav {
  padding: 0;
  background: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,169,110,0.18);
  border-top: 2px solid var(--gold);
  transition: box-shadow var(--transition);
}

#mainNav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

#mainNav .navbar-brand img.site-logo {
  height: 62px;
  width: auto;
  transition: height var(--transition);
  filter: drop-shadow(0 1px 4px rgba(201,169,110,0.3));
}

#mainNav .nav-link {
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  padding: 26px 14px !important;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
}

#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 10px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after { width: calc(100% - 20px); }

#mainNav .nav-link:hover,
#mainNav .nav-link.active { color: var(--gold) !important; }

#mainNav .navbar-toggler {
  border: 1px solid rgba(44,44,44,0.25);
  padding: 4px 10px;
}
#mainNav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(44,44,44,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile nav */
@media (max-width: 991px) {
  #mainNav .nav-link { padding: 10px 16px !important; }
}

/* ---------- Collections Hover Dropdown ---------- */
#mainNav .dropdown-toggle::after { display: none; }
#mainNav .dropdown-menu {
  border: none;
  border-top: 2px solid var(--gold);
  border-radius: 0 0 4px 4px;
  background: var(--bg);
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  padding: 6px 0;
  min-width: 210px;
  margin-top: 0 !important;
}
#mainNav .dropdown-item {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  padding: 11px 20px;
  transition: color 0.2s, background 0.2s;
}
#mainNav .dropdown-item:hover { color: var(--gold); background: var(--gold-light); }
#mainNav .dropdown-item + .dropdown-item { border-top: 1px solid var(--gold-light); }

@media (min-width: 992px) {
  #mainNav .dropdown:hover > .dropdown-menu { display: block; }
  #mainNav .dropdown-menu { top: 100%; }
}

/* ---------- Nav CTA Buttons ---------- */
.nav-cta-buttons {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: 12px;
  flex-shrink: 0;
}
.btn-nav-outline {
  display: inline-block;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all var(--transition);
}
.btn-nav-outline:hover {
  background: var(--gold);
  color: var(--text);
}
.btn-nav-gold {
  display: inline-block;
  padding: 6px 12px;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all var(--transition);
}
.btn-nav-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: white;
}
@media (max-width: 991px) {
  .nav-cta-buttons {
    margin-left: 0;
    margin-top: 12px;
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .btn-nav-outline, .btn-nav-gold {
    text-align: center;
    display: block;
    width: 100%;
    padding: 10px 16px;
    font-size: 0.72rem;
  }
}

/* ---------- Trust Bar ---------- */
.trust-bar { background: var(--text); padding: 64px 0; }
.trust-item { text-align: center; padding: 24px; }
.trust-item .trust-icon { font-size: 2rem; color: var(--gold); margin-bottom: 18px; }
.trust-item h5 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.trust-item p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin: 0; }

/* ---------- Highlight Cards ---------- */
.highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  height: 420px;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.highlight-card:hover img { transform: scale(1.05); }
.highlight-card-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.08) 65%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}
.highlight-card-body .eyebrow {
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.highlight-card-body h3 { color: white; font-size: 1.7rem; margin-bottom: 8px; }
.highlight-card-body p { color: rgba(255,255,255,0.72); font-size: 0.88rem; margin-bottom: 20px; }

/* ---------- Material / Stone Items ---------- */
.material-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius);
  transition: all var(--transition);
  height: 100%;
}
.material-item:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.material-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
}
.material-item h6 { font-size: 0.9rem; margin-bottom: 6px; }
.material-item p { font-size: 0.8rem; margin: 0; }

/* ---------- Pricing List ---------- */
.pricing-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.pricing-item:last-child { border-bottom: none; }
.pricing-item i { color: var(--gold); font-size: 1rem; padding-top: 3px; flex-shrink: 0; }

/* ---------- Service Sub-sections ---------- */
.service-sub-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(201,169,110,0.15);
  transition: all var(--transition);
  height: 100%;
}
.service-sub-item:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.service-sub-item .sub-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(201,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}
.service-sub-item h6 { font-size: 0.95rem; margin-bottom: 6px; }
.service-sub-item p { font-size: 0.85rem; margin: 0; }

/* ---------- Hero ---------- */
:root { --nav-h: 102px; }

#hero, #heroCarousel {
  height: calc(100vh - var(--nav-h));
  margin-top: var(--nav-h);
  padding: 0;
  position: relative;
  overflow: hidden;
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item,
#heroCarousel,
.carousel-inner, .carousel-item { height: 60vh; }

.carousel-item img, .hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-content .eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-content p {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 36px;
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0;
  transition: opacity var(--transition);
}
#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next { opacity: 0.7; }

.carousel-indicators [data-bs-target] {
  width: 28px;
  height: 2px;
  border-radius: 0;
  background-color: rgba(255,255,255,0.5);
  border: none;
  margin: 0 4px;
}
.carousel-indicators .active { background-color: var(--gold); }

/* ---------- Split Hero ---------- */
.hero-split {
  display: flex;
  height: 100%;
  width: 100%;
}
.hero-split-img {
  flex: 0 0 50%;
  overflow: hidden;
  position: relative;
}
.hero-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-split-tint {
  position: absolute;
  inset: 0;
  background: rgba(44,28,10,0.48);
}
.hero-split-caption {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: linear-gradient(to right, transparent 18%, rgba(0,0,0,0.26) 42%, rgba(0,0,0,0.26) 58%, transparent 82%);
}
.hero-split-caption-left {
  align-items: flex-start;
  text-align: left;
  padding-left: 7%;
  background: none;
}
.hero-split-caption .hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.hero-split-caption h1 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 28px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}
.hero-split-caption h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.btn-hero-outline {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.85);
  color: #fff;
  padding: 13px 34px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-hero-outline:hover {
  background: #fff;
  color: var(--text);
  border-color: #fff;
}

/* ---------- Concept 4 Type-Led Hero ---------- */
.hero-c4-text {
  flex: 0 0 58%;
  display: flex;
  align-items: center;
  padding: 60px 7% 60px 8%;
}
.hero-c4-img {
  flex: 0 0 42%;
  overflow: hidden;
  position: relative;
}
.hero-c4-img img {
  /*position: absolute;*/
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-c4-eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-c4-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 36px;
}
.hero-c4-headline em {
  font-style: italic;
}
.btn-c4-dark {
  display: inline-block;
  border: 1.5px solid rgba(44,34,20,0.6);
  color: var(--text);
  padding: 13px 32px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-c4-dark:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.btn-c4-light {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: #fff;
  padding: 13px 32px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.btn-c4-light:hover {
  background: #fff;
  color: var(--text);
}

/* ---------- Featured Services ---------- */
#services { background: var(--bg); }

.service-card {
  text-align: center;
  padding: 44px 32px;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius);
  transition: all var(--transition);
  background: var(--white);
  height: 100%;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.4rem;
}

.service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card p { font-size: 0.92rem; margin-bottom: 24px; }

.service-link {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 2px;
  transition: all var(--transition);
}
.service-link:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

/* ---------- Signature Pieces ---------- */
#signature { background: var(--bg-alt); }

.piece-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.piece-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.piece-card:hover img { transform: scale(1.05); }

.piece-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.piece-card:hover .piece-overlay { opacity: 1; }

.piece-overlay span {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ---------- Craftsmanship ---------- */
#craftsmanship { background: var(--bg); }

.craft-img-wrapper {
  position: relative;
}
.craft-img-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
}
.craft-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--text);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--serif);
  box-shadow: var(--shadow);
}
.craft-badge .number { font-size: 2rem; font-weight: 700; line-height: 1; }
.craft-badge .label { font-size: 0.65rem; font-family: var(--sans); letter-spacing: 0.1em; text-transform: uppercase; }

.craft-text { padding-left: 60px; }
@media (max-width: 991px) { .craft-text { padding-left: 0; margin-top: 48px; } }

.craft-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--gold-light);
}
.stat-item .number { font-family: var(--serif); font-size: 2rem; color: var(--gold); }
.stat-item .label { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; }

/* ---------- Testimonials ---------- */
#testimonials { background: var(--bg-alt); }

.testimonial-card {
  background: var(--white);
  padding: 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

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

.testimonial-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 28px;
}

.testimonial-author {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-location { font-size: 0.8rem; color: var(--text-light); margin-top: 4px; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(72%) sepia(26%) saturate(712%) hue-rotate(5deg) brightness(95%) contrast(89%);
}

/* ---------- Follow Journey ---------- */
#journey { background: var(--bg); }

.instagram-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
@media (max-width: 767px) { .instagram-grid { grid-template-columns: repeat(2, 1fr); } }

.insta-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.insta-item:hover img { transform: scale(1.08); }
.insta-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,169,110,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: white;
  font-size: 1.5rem;
}
.insta-item:hover .insta-item-overlay { opacity: 1; }

/* ---------- CTA Banner ---------- */
#cta-banner {
  background: var(--text);
  padding: 90px 0;
  text-align: center;
}
#cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
#cta-banner p { color: rgba(255,255,255,0.65); max-width: 480px; margin: 0 auto 36px; }

/* ---------- Footer ---------- */
footer {
  background: #1C1A18;
  color: rgba(255,255,255,0.55);
  padding: 80px 0 32px;
  font-size: 0.88rem;
}

footer .footer-brand img.site-logo {
  height: 100px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 16px rgba(201, 169, 110, 0.55));
}

footer h6 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 10px; }
footer ul li a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
footer ul li a:hover { color: var(--gold); }

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 40px 0 28px;
}

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

.social-links { display: flex; gap: 16px; }
.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  height: 420px;
  position: relative;
  overflow: hidden;
}
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-hero-overlay h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.page-hero-overlay .eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

/* ---------- Process Steps ---------- */
.process-step {
  text-align: center;
  padding: 32px 20px;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
}
.process-step h5 { font-size: 1.1rem; margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; }

/* ---------- Gallery Filter ---------- */
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 24px;
  background: transparent;
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text);
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---------- Services List (Care page) ---------- */
.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(201,169,110,0.15);
  transition: all var(--transition);
  margin-bottom: 16px;
}
.service-list-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.service-list-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(201,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}

/* ---------- Contact ---------- */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}
.contact-info-text h6 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-info-text p { margin: 0; font-size: 0.95rem; }

/* ---------- Forms ---------- */
.form-control, .form-select {
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
  outline: none;
}
.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}

textarea.form-control { min-height: 140px; resize: vertical; }

/* ---------- Map ---------- */
.map-wrapper {
  position: relative;
  padding-bottom: 50%;
  border-radius: var(--radius);
  overflow: hidden;
}
.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Story Page ---------- */
.story-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}

.value-item {
  padding: 32px;
  border-top: 2px solid var(--gold);
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
}

/* ---------- Lightbox ---------- */
.lightbox-modal .modal-dialog { max-width: 90vw; }
.lightbox-modal .modal-content {
  background: #0a0a0a;
  border: none;
  border-radius: var(--radius);
}
.lightbox-modal .modal-body { padding: 0; }
.lightbox-modal img {
  max-height: 85vh;
  width: 100%;
  object-fit: contain;
}
.lightbox-modal .btn-close { filter: invert(1); position: absolute; right: 16px; top: 16px; z-index: 10; }

/* ---------- Animations (AOS fallback) ---------- */
[data-aos] {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ---------- Utility ---------- */
.text-gold { color: var(--gold) !important; }
.bg-alt { background-color: var(--bg-alt); }
.fs-serif { font-family: var(--serif); }

/* Gallery filter button aliases (for index.html homepage gallery) */
.gallery-filter-btn {
  padding: 8px 24px;
  background: transparent;
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text);
}

/* =============================================
   Triptych Hero — index3 style
   ============================================= */

#heroWrapper {
  margin-top: 102px;
  height: calc(100vh - 102px);
  min-height: 560px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#triptychHero {
  flex: 1;
  min-height: 0;
  padding: 45px 0;
  display: flex;
  overflow: hidden;
}

.tp-panel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-panel:nth-child(1) { flex: 1.4; }
.tp-panel:nth-child(2) { flex: 2.4; }
.tp-panel:nth-child(3) { flex: 1.4; }

#triptychHero:hover .tp-panel { flex: 1.2; }
#triptychHero .tp-panel:hover { flex: 3 !important; }

.tp-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.tp-panel:hover img { transform: scale(1.04); }

.tp-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,7,4,0.08) 0%, rgba(10,7,4,0.15) 50%, rgba(10,7,4,0.72) 100%);
  z-index: 1;
  transition: background 0.4s;
}
.tp-panel:hover::after {
  background: linear-gradient(to bottom, rgba(10,7,4,0.04) 0%, rgba(10,7,4,0.10) 50%, rgba(10,7,4,0.65) 100%);
}

.tp-panel:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 1px;
  background: rgba(201,169,110,0.3);
  z-index: 3;
}

.tp-label {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 2;
  padding: 0 28px 32px;
  transform: translateY(4px);
  transition: transform 0.35s;
}
.tp-panel:hover .tp-label { transform: translateY(0); }

.tp-label-cat {
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
  opacity: 0;
  transition: opacity 0.35s 0.1s;
}
.tp-panel:hover .tp-label-cat { opacity: 1; }

.tp-label-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  display: block;
  line-height: 1.3;
}

.tp-label-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.3s 0.15s, color 0.2s;
}
.tp-panel:hover .tp-label-link { opacity: 1; }
.tp-label-link:hover { color: var(--gold); }

.tp-centre-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 90%;
  pointer-events: none;
}

.tp-eyebrow {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 16px;
}

.tp-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
  margin-bottom: 20px;
}
.tp-headline em { font-style: italic; color: var(--gold-light); }

.tp-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
  opacity: 0.7;
}

#triptychCta {
  background: #f5f0e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 56px;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}

.tp-cta-left {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b5c45;
}

.tp-cta-btns { display: flex; gap: 12px; align-items: center; }

.btn-tp-dark {
  display: inline-block;
  padding: 11px 32px;
  background: #2c1f0e;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f5f0e8;
  text-decoration: none;
  transition: background 0.25s;
}
.btn-tp-dark:hover { background: var(--gold); color: #1a1208; }

.btn-tp-outline {
  display: inline-block;
  padding: 11px 32px;
  border: 1.5px solid rgba(44,31,14,0.35);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2c1f0e;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
}
.btn-tp-outline:hover { border-color: #2c1f0e; background: rgba(44,31,14,0.06); }

@media (max-width: 768px) {
  #heroWrapper { height: auto; min-height: 0; }
  #triptychHero { flex-direction: column; height: auto; padding: 0; }
  .tp-panel { flex: none !important; height: 52vw; min-height: 200px; }
  #triptychHero:hover .tp-panel { flex: none !important; }
  .tp-centre-overlay { display: none; }
  #triptychCta { flex-direction: column; text-align: center; padding: 20px 24px; gap: 16px; }
  .tp-label-cat, .tp-label-link { opacity: 1; }
}
