/* ============================================================
   EX FIDE BIBLES AND STATIONERY — Main Stylesheet
   ============================================================ */

/* Root Variables */
:root {
  --black:        #1C1C1C;
  --burgundy:     #7A1C1C;
  --green:        #2C4A2E;
  --gold:         #C9A85C;
  --cream:        #F5F0E8;
  --text:         #2D2D2D;
  --white:        #FFFFFF;
  --overlay:      rgba(0, 0, 0, 0.55);
  --overlay-dark: rgba(0, 0, 0, 0.68);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', Arial, sans-serif;

  --nav-height:        72px;
  --section-padding:   80px 0;
  --container-max:     1100px;
  --radius:            4px;
  --transition:        0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── Base ── */
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; }
h1 { font-size: clamp(2rem,   5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Container ── */
.container {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-height);
  background: var(--black);
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo img {
  height: 44px;
  width: auto;
  background: #1C1C1C;
  border-radius: 50%;
  padding: 3px 5px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.75);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — FULL VIEWPORT (Home)
   ============================================================ */
.hero-full {
  min-height: calc(100vh - var(--nav-height));
  background: url('../images/ExFideBiblesBackground.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay);
}
.hero-full .hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 40px 24px;
  max-width: 800px;
}
.hero-logo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  margin: 0 auto 28px;
  border-radius: 50%;
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.45);
}
.hero-full h1 {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
  margin-bottom: 14px;
}
.hero-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  color: var(--gold);
  margin-bottom: 36px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   HERO — PAGE (inner pages)
   ============================================================ */
.hero-page {
  height: 38vh;
  min-height: 240px;
  background: url('../images/ExFideBiblesBackground.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
}
.hero-page .hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}
.hero-page h1 {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
  margin-bottom: 10px;
}
.hero-page .hero-sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.btn-sm { font-size: 0.78rem; padding: 8px 18px; letter-spacing: 0.07em; }
.btn-primary   { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }
.btn-primary:hover { background: #6a1818; border-color: #6a1818; }
.btn-outline   { background: transparent; color: var(--white); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-gold      { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: #b8913e; border-color: #b8913e; }
.btn-dark      { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: #333; }
.btn-white     { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-white:hover { background: #f0e8d8; border-color: #f0e8d8; }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section          { padding: var(--section-padding); }
.section-cream    { background: var(--cream); }
.section-dark     { background: var(--black); color: var(--white); }
.section-burgundy { background: var(--burgundy); color: var(--white); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 0; }
.section-dark .section-header h2,
.section-burgundy .section-header h2 { color: var(--white); }

.gold-rule {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 18px auto 22px;
  border-radius: 2px;
}
.section-header .sub {
  max-width: 600px;
  margin: 0 auto;
  color: #666;
  font-size: 1.05rem;
}
.section-dark .section-header .sub,
.section-burgundy .section-header .sub { color: rgba(255, 255, 255, 0.75); }

/* ============================================================
   MISSION STRIP
   ============================================================ */
.mission-strip {
  background: var(--black);
  padding: 64px 24px;
  text-align: center;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.mission-strip blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
  color: var(--white);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.65;
}
.mission-strip blockquote em { color: var(--gold); font-style: normal; }

/* ============================================================
   SERVICE CARDS (home preview)
   ============================================================ */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid #ddd4c5;
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.1);
}
.service-card .card-icon {
  font-size: 2.4rem;
  color: var(--burgundy);
  margin-bottom: 18px;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--black); }
.service-card p  { font-size: 0.95rem; color: #666; margin-bottom: 22px; }
.link-arrow {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--burgundy);
  transition: color var(--transition);
}
.link-arrow:hover { color: var(--gold); }

/* ============================================================
   SERVICE DETAIL SECTIONS (services page)
   ============================================================ */
.services-body { padding: var(--section-padding); }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid #ddd4c5;
}
.service-detail:last-of-type { border-bottom: none; }

.service-detail.reverse > .service-visual { order: 2; }
.service-detail.reverse > .service-text   { order: 1; }

.portfolio-panel .service-detail { grid-template-columns: 1.35fr 1fr; }
.portfolio-panel .service-detail.reverse { grid-template-columns: 1fr 1.35fr; }

/* Leather carousel */
.leather-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
}
.lc-track { width: 100%; height: 100%; }
.lc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.lc-img.lc-active { opacity: 1; pointer-events: auto; }
.lc-prev, .lc-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.lc-prev { left: 10px; }
.lc-next { right: 10px; }
.lc-prev:hover, .lc-next:hover { background: rgba(0,0,0,0.7); }
.lc-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.lc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background 0.2s;
}
.lc-dot.active { background: #fff; }

.service-visual {
  background: var(--cream);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.service-visual i    { font-size: 4rem; color: var(--burgundy); }
.service-visual span { font-size: 0.85rem; color: #aaa; font-style: italic; }
.service-visual img  { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); display: block; }
.stationery-visual { position: relative; }
.stationery-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.stationery-toggle:hover { background: rgba(0,0,0,0.7); }

.service-text .eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
}
.service-text h2 { margin-bottom: 0; }
.service-text .gold-rule { margin: 16px 0 20px; }
.service-text p  { color: #555; }

/* Materials */
.materials-group { margin-top: 40px; }
.materials-group + .materials-group { margin-top: 36px; }
.materials-group-label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 10px;
  border-bottom: 1px solid #d9cfc0;
  margin-bottom: 16px;
}
.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.material-chip {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.material-chip strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 4px;
}
.material-chip span { font-size: 0.85rem; color: #777; }
.materials-note { font-size: 0.82rem; color: #999; font-style: italic; margin-top: 12px; }
.rebind-leather-note { font-size: 0.88rem; color: #777; font-style: italic; margin-bottom: 32px; text-align: center; }
.contact-bulletin {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--burgundy);
  color: var(--white);
  padding: 14px 24px;
  font-size: 0.92rem;
  line-height: 1.5;
  justify-content: center;
  text-align: center;
}
.contact-bulletin i { font-size: 1.1rem; flex-shrink: 0; }
.learn-intro { max-width: 740px; margin: 0 auto; }
.learn-intro p { color: #555; margin-bottom: 18px; line-height: 1.8; }
.learn-intro p:last-child { margin-bottom: 0; }

/* YouTube feature card */
.yt-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}
.yt-thumbnail-link {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
}
.yt-thumbnail {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}
.yt-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #fff;
  background: rgba(0,0,0,0.3);
  transition: background 0.2s;
}
.yt-play-btn .fa-youtube { color: #FF0000; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }
.yt-thumbnail-link:hover .yt-play-btn { background: rgba(0,0,0,0.5); }
.yt-feature-text h3 { font-size: 1.5rem; margin-bottom: 16px; color: var(--black); }
.yt-feature-text p  { color: #555; line-height: 1.8; }
.yt-playlist-thumb {
  background: var(--black);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.yt-playlist-thumb .yt-play-btn { position: static; background: none; font-size: 5rem; }
.yt-divider { border: none; border-top: 1px solid #ddd4c5; margin: 56px 0; }

/* Design Options page */
.option-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}
.option-grid--2 { grid-template-columns: repeat(2, 1fr); }
.option-grid--3 { grid-template-columns: repeat(3, 1fr); }
.option-grid--4 { grid-template-columns: repeat(4, 1fr); }

.option-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #e4ddd2;
  overflow: hidden;
}
.option-img-wrap {
  background: var(--cream);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #bbb;
}
.option-img-wrap i    { font-size: 2rem; }
.option-img-wrap span { font-size: 0.78rem; font-style: italic; }
.option-img-wrap img  { width: 100%; height: 100%; object-fit: cover; display: block; }
.option-card-body { padding: 16px; }
.option-card-body strong { display: block; font-family: var(--font-heading); font-size: 1rem; color: var(--black); margin-bottom: 6px; }
.option-card-body p { font-size: 0.85rem; color: #777; line-height: 1.6; margin: 0; }

/* Ribbon color display */
.ribbon-display-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.ribbon-display-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.ribbon-display-swatch {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.ribbon-display-item span { font-size: 0.75rem; color: #555; text-align: center; line-height: 1.3; }

@media (max-width: 960px) {
  .option-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .option-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .option-grid--2,
  .option-grid--3,
  .option-grid--4 { grid-template-columns: 1fr; }
}

/* Supplies under construction */
.supplies-wip { opacity: 0.45; pointer-events: none; position: relative; }
.wip-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0f0f0;
  border-left: 4px solid #aaa;
  border-radius: var(--radius);
  padding: 14px 20px;
  color: #666;
  font-size: 0.92rem;
  margin-bottom: 32px;
  pointer-events: all;
}

@media (max-width: 960px) {
  .yt-feature { grid-template-columns: 1fr; }
}

/* Order CTA */
.etsy-cta {
  background: var(--burgundy);
  color: var(--white);
  padding: 64px 24px;
  text-align: center;
}
.etsy-cta h2 { color: var(--white); margin-bottom: 14px; }
.etsy-cta p  { color: rgba(255,255,255,0.82); margin-bottom: 32px; font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-text .eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
}
.about-text h2 { margin-bottom: 0; }
.about-text .gold-rule { margin: 16px 0 20px; }
.about-text p  { color: #555; }

.about-name-box {
  background: var(--cream);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-top: 48px;
}
.about-name-box h3 { margin-bottom: 12px; color: var(--black); }
.about-name-box p  { color: #555; }

.about-cta {
  text-align: center;
  padding: 56px 24px;
  background: var(--black);
  color: var(--white);
}
.about-cta h2 { color: var(--white); margin-bottom: 14px; }
.about-cta p  { color: rgba(255,255,255,0.75); margin-bottom: 28px; font-size: 1.05rem; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.gallery-placeholder {
  background: var(--cream);
  aspect-ratio: 1;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px dashed #c4b99f;
  transition: background var(--transition);
}
.gallery-placeholder:hover { background: #ede5d8; }
.gallery-placeholder i    { font-size: 2rem; color: #c4b99f; }
.gallery-placeholder span { font-size: 0.82rem; color: #bbb; font-style: italic; text-align: center; padding: 0 8px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; margin-top: 40px; }
.blog-card { display: flex; flex-direction: column; border: 1px solid #e4ddd2; border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow 0.2s; }
.blog-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
.blog-card-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.blog-card-body { padding: 20px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--burgundy); margin-bottom: 8px; }
.blog-card-body h3 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--black); margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p { font-size: 0.88rem; color: #777; line-height: 1.7; flex: 1; }
.blog-card-read { display: inline-block; margin-top: 16px; font-size: 0.82rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; }

.blog-post { max-width: 740px; margin: 0 auto; }
.blog-meta { font-size: 0.82rem; color: #999; margin-bottom: 36px; }
.blog-post h2 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--black); margin: 36px 0 14px; }
.blog-post p { color: #555; line-height: 1.85; margin-bottom: 18px; }
.blog-post a { color: var(--burgundy); text-decoration: underline; }
.blog-cta { background: var(--cream); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 28px 32px; margin-top: 48px; }
.blog-cta h3 { font-family: var(--font-heading); font-size: 1.25rem; color: var(--black); margin-bottom: 8px; }
.blog-cta p { color: #555; margin-bottom: 20px; }

/* Pricing page */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}
.pricing-card {
  border: 2px solid #e4ddd2;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pricing-card-body { flex: 1; }
.pricing-card--featured {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.pricing-card-header {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 28px 20px;
}
.pricing-card--featured .pricing-card-header { background: var(--burgundy); }
.pricing-tier-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.pricing-ship-note { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 6px; }
.pricing-card-body { padding: 24px; }
.pricing-leather-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--burgundy); margin-bottom: 8px; }
.pricing-card-body p { font-size: 0.92rem; color: #555; line-height: 1.7; }
.pricing-options-list { margin: 8px 0 0 16px; }
.pricing-options-list li { font-size: 0.88rem; color: #555; line-height: 1.9; }
.pricing-note { font-size: 0.8rem; color: #999; font-style: italic; margin-top: 16px !important; }
.pricing-card-img { width: 100%; display: block; cursor: zoom-in; }
@media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }
.enquire-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 640px) { .enquire-grid { grid-template-columns: 1fr; } }

.pricing-addons { margin-top: 40px; padding: 28px 32px; background: var(--cream); border-radius: var(--radius); border-left: 4px solid var(--gold); }
.pricing-addons-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--black); margin-bottom: 14px; }
.pricing-addons-list { display: flex; flex-wrap: wrap; gap: 8px 32px; margin-left: 16px; }
.pricing-addons-list li { font-size: 0.9rem; color: #555; line-height: 1.8; }

.gallery-photos-link { text-align: center; margin-bottom: 32px; }

/* Portfolio tabs */
.portfolio-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 32px;
}
.portfolio-tab-btn {
  background: none;
  border: none;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #999;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.portfolio-tab-btn:hover  { color: var(--black); }
.portfolio-tab-btn.active { color: var(--burgundy); border-bottom-color: var(--burgundy); }

.portfolio-panel         { display: none; }
.portfolio-panel.active  { display: block; }

.gallery-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.load-more-wrap {
  text-align: center;
  margin: 8px 0 48px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}
.lightbox-img {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  z-index: 1;
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.28); }

.gallery-img { cursor: pointer; }

/* Facebook CTA card */
.fb-cta-card {
  background: var(--black);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
  color: var(--white);
}
.fb-cta-card .fb-icon { font-size: 3.2rem; color: #EA4335; margin-bottom: 18px; }
.fb-cta-card h3  { color: var(--white); margin-bottom: 14px; }
.fb-cta-card p   { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 28px; font-size: 1.02rem; }

/* Social row (gallery page) */
.social-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #ddd4c5;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: filter var(--transition), transform var(--transition);
}
.social-pill:hover { filter: brightness(0.88); transform: translateY(-2px); }
.social-pill-insta { background: #E1306C; color: var(--white); }
.social-pill-yt    { background: #FF0000; color: var(--white); }


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-centered {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.contact-centered h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--black);
  margin-bottom: 4px;
}
.biz-card {
  background: var(--white);
  border: 1px solid #e4ddd2;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  padding: 48px 52px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.biz-card-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--black);
  margin: 0 auto 16px;
  object-fit: cover;
}
.biz-card-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 4px;
}
.biz-card-location {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 0;
}
.biz-card .gold-rule { margin: 20px auto 28px; }
.biz-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
}
.contact-centered .contact-info-item {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 0;
  gap: 10px;
}
.contact-centered .ci-text { text-align: center; }
@media (max-width: 520px) { .biz-card { padding: 36px 24px; } .biz-card-grid { grid-template-columns: 1fr; } }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 28px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.ci-icon {
  width: 42px;
  height: 42px;
  background: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.ci-text strong { display: block; margin-bottom: 3px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.07em; color: #888; }
.ci-text a      { color: var(--burgundy); transition: color var(--transition); }
.ci-text a:hover { color: var(--gold); }
.ci-text span   { color: var(--text); }

.contact-socials {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #ddd4c5;
}
.contact-socials h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aaa;
  margin-bottom: 16px;
}
.social-icon-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon-link {
  width: 42px;
  height: 42px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: background var(--transition);
}
.social-icon-link:hover { background: var(--burgundy); }

/* Contact form */
.contact-form {
  background: var(--cream);
  padding: 44px;
  border-radius: var(--radius);
  border-top: 4px solid var(--gold);
}
.contact-form h3 { margin-bottom: 30px; }
.form-group       { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #777;
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid #cdc4b5;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 92, 0.2);
}
.form-group textarea { resize: vertical; min-height: 148px; }
.form-success {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 22px;
  font-weight: 700;
  border: 1px solid #c3e6cb;
}
.form-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #111111;
  color: rgba(255, 255, 255, 0.65);
  padding: 68px 0 0;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand .footer-logo {
  height: 58px;
  background: #1C1C1C;
  border-radius: 50%;
  padding: 4px 6px;
  margin-bottom: 18px;
}
.footer-brand .footer-name {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.footer-brand .footer-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-social-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social-icons a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: border-color var(--transition), color var(--transition);
}
.footer-social-icons a:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   MEDIA QUERIES
   ============================================================ */
@media (max-width: 960px) {
  .service-cards    { grid-template-columns: 1fr; gap: 20px; max-width: 480px; margin: 0 auto; }
  .service-detail   { grid-template-columns: 1fr; gap: 32px; }
  .service-detail.reverse > .service-visual,
  .service-detail.reverse > .service-text { order: unset; }
  .about-grid       { grid-template-columns: 1fr; }
  .about-photo      { max-width: 260px; aspect-ratio: 1; margin: 0 auto; }
  .gallery-grid     { grid-template-columns: repeat(2, 1fr); /* already 2 cols */ }
  .contact-grid     { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-padding: 56px 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    gap: 0;
    padding: 12px 0 20px;
    border-bottom: 2px solid var(--gold);
  }
  .nav-links a {
    display: block;
    padding: 12px 24px;
    border-bottom: none !important;
  }
  .nav-links a:hover,
  .nav-links a.active { background: rgba(201, 168, 92, 0.1); }
  body.nav-open .nav-links { display: flex; }
  .nav-toggle { display: flex; }

  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-logo    { width: 120px; height: 120px; }

  .footer-grid  { grid-template-columns: 1fr; gap: 32px; }
  .fb-cta-card  { padding: 36px 28px; }
}

@media (max-width: 520px) {
  .gallery-grid  { grid-template-columns: 1fr; }
  .contact-form  { padding: 28px 20px; }
  .service-cards { max-width: 100%; }
}
