/* ============================================================
   TAILORS LDN — Main Stylesheet
   Design System: Elegant, premium, approachable
   Palette: Off-white base, deep navy/charcoal, gold accents
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Colours */
  --gold:          #B8973A;
  --gold-light:    #D4AF5A;
  --gold-pale:     #F5EDD8;
  --navy:          #1A1F2E;
  --charcoal:      #2C2C2C;
  --off-white:     #FAF8F4;
  --warm-white:    #FFFFFF;
  --mid-grey:      #6B6B6B;
  --light-grey:    #E8E4DC;
  --border:        #DDD8CE;

  /* Typography */
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-gap:   6rem;
  --container:     1200px;
  --radius:        4px;
  --radius-lg:     8px;

  /* Transitions */
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:    0.3s var(--ease);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--charcoal);
  background-color: var(--off-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ── Typography Scale ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 400; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem);   font-weight: 400; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.05rem; }

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--mid-grey);
}

.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--charcoal);
}

/* ── Gold Rule / Divider ── */
.gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-block: 1.25rem;
}

.gold-rule--centre {
  margin-inline: auto;
}

/* ── Section Labels ── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--gold-light);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,31,46,0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--warm-white);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--warm-white);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,151,58,0.3);
}

.btn-outline-white {
  background: transparent;
  color: var(--warm-white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--warm-white);
}

/* ── Header / Navigation ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  /* Default: solid background for all internal pages */
  background: rgba(250,248,244,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.06);
}

/* Hero pages only: transparent header that transitions on scroll */
.site-header.hero-overlay {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  padding: 1.25rem 0;
}

.site-header.scrolled {
  background: rgba(250,248,244,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.06);
}

.site-header.hero-dark {
  /* used on hero-overlay pages */
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-link {
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  transition: opacity var(--transition);
}

.logo-img--white { display: none; }
.logo-img--gold  { display: block; }

/* On hero (dark) sections, swap to white logo */
.site-header.hero-overlay .logo-img--white { display: block; }
.site-header.hero-overlay .logo-img--gold  { display: none; }
.site-header.hero-overlay.scrolled .logo-img--white { display: none; }
.site-header.hero-overlay.scrolled .logo-img--gold  { display: block; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* White nav links on hero overlay */
.site-header.hero-overlay:not(.scrolled) .nav-links a {
  color: rgba(255,255,255,0.88);
}

.site-header.hero-overlay:not(.scrolled) .nav-links a:hover {
  color: var(--gold-light);
}

.nav-cta {
  margin-left: 0.5rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all var(--transition);
}

.site-header.hero-overlay:not(.scrolled) .hamburger span {
  background: var(--warm-white);
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Ensure the close icon is dark even on the hero overlay when the menu is open */
.site-header.hero-overlay:not(.scrolled) .hamburger.open span {
  background: var(--charcoal);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--warm-white);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  box-shadow: -4px 0 40px rgba(0,0,0,0.12);
  transition: right var(--transition);
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a:not(.btn) {
  display: block;
  padding: 0.9rem 0;
  font-size: 1.05rem;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--light-grey);
  transition: color var(--transition), padding-left var(--transition);
}

.mobile-nav a:not(.btn):hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

.mobile-nav .btn {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
  color: var(--gold-light) !important;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
}

.nav-overlay.open {
  display: block;
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,31,46,0.82) 0%,
    rgba(26,31,46,0.55) 60%,
    rgba(26,31,46,0.35) 100%
  );
}

/* Filler image placeholder */
.hero-bg.filler {
  background: linear-gradient(135deg, #1A1F2E 0%, #2C3347 40%, #1A1F2E 100%);
}

.hero-bg.filler::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(184,151,58,0.04) 40px,
      rgba(184,151,58,0.04) 41px
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 6rem;
  max-width: 680px;
}

.hero-content .section-label {
  color: var(--gold-light);
}

.hero h1 {
  color: var(--warm-white);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,0.5);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(184,151,58,0.05) 40px,
    rgba(184,151,58,0.05) 41px
  );
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .section-label {
  color: var(--gold-light);
}

.page-hero h1 {
  color: var(--warm-white);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-inline: auto;
}

/* ── Section Spacing ── */
.section {
  padding-block: var(--section-gap);
}

.section--light {
  background: var(--warm-white);
}

.section--off-white {
  background: var(--off-white);
}

.section--dark {
  background: var(--navy);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--warm-white);
}

.section--dark p {
  color: rgba(255,255,255,0.7);
}

.section--dark .section-label {
  color: var(--gold-light);
}

.section--dark .gold-rule {
  background: var(--gold-light);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header--centre {
  text-align: center;
}

.section-header--centre .gold-rule {
  margin-inline: auto;
}

/* ── Services Snapshot (Home) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: var(--gold-pale);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.service-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.service-card h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── Why Choose Us ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.trust-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
}

.trust-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.trust-item h5 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
}

.trust-item p {
  font-size: 0.88rem;
}

/* ── Why Choose Us — Two Column ── */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--light-grey);
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-image .filler-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #2C3347, #1A1F2E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.why-content .trust-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trust-list-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 3px;
}

.trust-list-item span {
  font-size: 0.95rem;
  color: var(--charcoal);
}

/* ── Workshop / Craftsmanship ── */
.workshop-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
}

.workshop-image {
  position: relative;
  background: var(--navy);
}

.workshop-image img,
.workshop-image .filler-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workshop-image .filler-img {
  background: linear-gradient(160deg, #1A1F2E, #2C3347);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.12);
  font-family: var(--font-serif);
  font-size: 1rem;
}

.workshop-content {
  background: var(--navy);
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.workshop-content h2 {
  color: var(--warm-white);
}

.workshop-content p {
  color: rgba(255,255,255,0.72);
  margin-top: 1.25rem;
}

.workshop-content .gold-rule {
  background: var(--gold);
}

/* ── Location Section ── */
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-map {
  aspect-ratio: 4/3;
  background: var(--light-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-map .filler-map {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #e8e4dc, #d4cfc5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-grey);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location-detail-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-detail-item .detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.location-detail-item p {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
}

/* ── CTA Strip ── */
.cta-strip {
  background: var(--navy);
  padding-block: 5rem;
  text-align: center;
}

.cta-strip h2 {
  color: var(--warm-white);
  margin-bottom: 1rem;
}

.cta-strip p {
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.cta-strip .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── Services Page ── */
.services-section {
  padding-block: 4rem;
}

.services-section + .services-section {
  padding-top: 0;
}

.service-category {
  margin-bottom: 4rem;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.category-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  flex-shrink: 0;
}

.category-header h3 {
  font-size: 1.7rem;
  color: var(--navy);
}

.category-header p {
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.service-subcategory {
  margin-bottom: 2.5rem;
}

.service-subcategory h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
}

.service-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.75rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.service-item:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateX(3px);
}

.service-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-item span {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.5;
}

/* ── Prices Page ── */
.pricing-intro {
  max-width: 640px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing-card-header {
  background: var(--navy);
  padding: 1.75rem 2rem;
}

.pricing-card-header h3 {
  color: var(--warm-white);
  font-size: 1.4rem;
}

.pricing-card-header p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.pricing-card-body {
  padding: 1.75rem 2rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-grey);
  gap: 1rem;
}

.price-row:last-child {
  border-bottom: none;
}

.price-label {
  font-size: 0.9rem;
  color: var(--charcoal);
  flex: 1;
}

.price-value {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
}

.pricing-note {
  background: var(--gold-pale);
  border: 1px solid rgba(184,151,58,0.25);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pricing-note svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-note p {
  font-size: 0.92rem;
  color: var(--charcoal);
}

/* ── Gallery Page ── */
.gallery-grid {
  columns: 3;
  column-gap: 1.25rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img,
.gallery-item .filler-gallery {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease);
}

.gallery-item .filler-gallery {
  aspect-ratio: 1;
  background: linear-gradient(160deg, #2C3347, #1A1F2E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.gallery-item:nth-child(3n+2) .filler-gallery { aspect-ratio: 3/4; background: linear-gradient(160deg, #1A1F2E, #2C3347); }
.gallery-item:nth-child(3n+3) .filler-gallery { aspect-ratio: 4/3; background: linear-gradient(160deg, #2C3347, #3A4060); }

.gallery-item:hover img,
.gallery-item:hover .filler-gallery {
  transform: scale(1.04);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,31,46,0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(26,31,46,0.35);
}

.gallery-item-overlay svg {
  width: 32px;
  height: 32px;
  stroke: white;
  fill: none;
  stroke-width: 1.5;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay svg {
  opacity: 1;
}

/* ── FAQ Page ── */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
}

.faq-question:hover span {
  color: var(--gold);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.faq-icon::before {
  width: 14px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── Contact / Book Form ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item .info-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-info-item p {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-info-item a {
  color: var(--charcoal);
  transition: color var(--transition);
}

.contact-info-item a:hover {
  color: var(--gold);
}

/* Form */
.booking-form {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6B6B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,151,58,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B0ABA2;
}

.conditional-fields {
  display: none;
  padding: 1.25rem;
  background: var(--gold-pale);
  border: 1px solid rgba(184,151,58,0.2);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.conditional-fields.visible {
  display: block;
}

.conditional-fields .form-group:last-child {
  margin-bottom: 0;
}

.form-submit {
  margin-top: 0.5rem;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success svg {
  width: 48px;
  height: 48px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  margin-inline: auto;
  margin-bottom: 1rem;
}

.form-success h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 0.95rem;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-img {
  height: 48px;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p,
.footer-contact-item a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

.footer-credit {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  margin-top: 0.25rem;
}

.footer-credit__link {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-credit__link:hover {
  color: var(--gold-light);
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: none; /* hidden by default — shown only on mobile */
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

@media (max-width: 767px) {
  .whatsapp-float {
    display: flex;
  }
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: white;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb svg {
  width: 12px;
  height: 12px;
  stroke: rgba(255,255,255,0.35);
  fill: none;
  stroke-width: 2;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Utility ── */
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-centre { text-align: center; }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mb-4  { margin-bottom: 2rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .why-layout,
  .workshop-layout,
  .location-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .workshop-layout {
    grid-template-columns: 1fr;
  }

  .workshop-image {
    min-height: 320px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 4rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .gallery-grid {
    columns: 2;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    padding-top: 7rem;
  }

  .why-image {
    aspect-ratio: 3/2;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    columns: 1;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .booking-form {
    padding: 1.5rem;
  }
}
