/* Lightbox navigation buttons */
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, border 0.18s;
}
.lightbox-prev {
  left: 18px;
}
.lightbox-next {
  right: 18px;
}
.lightbox-prev:focus-visible, .lightbox-next:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 2px;
}
.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(0,0,0,0.7);
  border-color: var(--brand-2);
}
/* ==========================================
   Chettira Family — Blue & White Professional
   ========================================== */

 :root{
  --bg: #050505;          /* jet black background */
  --surface: #121212;     /* glossy dark surface */
  --surface-alt: #1a1a1a; /* chip/background accent */
  --surface-gloss: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)), #121212;
  --gloss: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  --ink: #f8f8f8;         /* white text */
  --muted: #c2c2c2;       /* muted light gray */
  --border: #2a2a2a;      /* subtle dark border */

  --brand: #1a5f4a;       /* deep emerald teal */
  --brand-2: #c9a961;     /* warm gold accent */
  --brand-3: #e5d4bc;     /* cream highlight */
  --nav-highlight: #d6b25e; /* gold highlight for nav */

  --radius: 12px;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

body[data-theme="light"]{
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: #f8f8f8;
  --surface-gloss: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0)), #ffffff;
  --gloss: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  --ink: #111111;
  --muted: #5a5a5a;
  --border: #e6e6e6;
  --shadow: 0 18px 38px rgba(17, 17, 17, 0.08);
  --nav-highlight: #b8842a;
}

*{ box-sizing:border-box; }

html, body{
  margin:0;
  padding:0;
}

body{
  font-family: "Poppins",
    "Segoe UI",
    system-ui,
    -apple-system,
    Roboto,
    Arial,
    sans-serif;
  background-color: var(--bg);
  background-image: none;
  color: var(--ink);
  line-height: 1.65;
  font-weight: 300;
}

p {
  font-size: 0.875rem;
}

/* Links */
a {
  color: var(--ink);
  text-decoration: none;
  transition: color 200ms ease;
}

a:hover {
  color: var(--brand-2);
}



/* Layout */
.container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--surface);
  background-image: var(--gloss);
  border-bottom: 2px solid #1a5f4a;
  backdrop-filter: blur(12px);
  background-color: var(--surface);
  box-shadow: 0 2px 16px rgba(26, 95, 74, 0.12);
}

.brand{
  padding: 16px 0 12px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}

.theme-toggle{
  position: relative;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-gloss);
  color: var(--ink);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0 10px 0 26px;
  width: 72px;
  min-width: 72px;
  height: 24px;
  text-align: center;
  cursor: pointer;
  transition: transform 120ms ease, border-color 120ms ease, box-shadow 120ms ease, background 120ms ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 8px 18px rgba(0, 0, 0, 0.28);
}

.theme-toggle::before{
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: left 160ms ease, background 160ms ease, border-color 160ms ease;
}

body[data-theme="light"] .theme-toggle::before{
  left: calc(100% - 23px);
}

body[data-theme="light"] .theme-toggle{
  padding: 0 26px 0 10px;
}

.theme-toggle:hover{
  transform: translateY(-1px);
  border-color: var(--brand-2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 22px rgba(0, 0, 0, 0.35);
}

.theme-toggle:focus-visible{
  outline: 2px solid var(--brand-2);
  outline-offset: 2px;
}

.brand h1{
  margin:0;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: -0.4px;
  background: none;
  -webkit-text-fill-color: var(--ink);
}

nav{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  align-items: center;
}

nav a{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--ink);
  text-decoration:none;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 400;
  position: relative;
  transition: color 180ms ease;
  border: 1px solid transparent;
}

nav a span{
  display: inline-block;
  transition: transform 180ms ease;
}

nav a:hover{
  color: var(--nav-highlight);
}

nav a:hover span{
  transform: translateY(-3px);
}

/* Remove strong highlighted tab for current page; use subtle text color instead */
nav a[aria-current="page"]{
  color: var(--nav-highlight);
  font-weight: 600;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
}

.search-trigger{
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-gloss);
  color: var(--ink);
  cursor: pointer;
  transition: all 140ms ease;
}

.search-trigger:hover{
  border-color: var(--brand-2);
  color: var(--brand-2);
}

.search-trigger svg{
  width: 16px;
  height: 16px;
}

.search-overlay{
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
  z-index: 80;
}

.search-overlay.is-open{
  opacity: 1;
  pointer-events: auto;
}

.search-panel{
  width: min(720px, 92vw);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: grid;
  gap: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.search-close{
  justify-self: end;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--ink);
  cursor: pointer;
}

.search-label{
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.search-input{
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--ink);
  font-size: 1rem;
}

.search-input:focus{
  outline: none;
  border-color: var(--brand-2);
  box-shadow: 0 0 16px rgba(201, 169, 97, 0.2);
}

.search-status{
  color: var(--muted);
  font-size: 0.9rem;
}

.search-results{
  display: grid;
  gap: 10px;
  max-height: 45vh;
  overflow-y: auto;
}

.search-result{
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--surface-alt);
  color: var(--ink);
  text-decoration: none;
  transition: all 140ms ease;
}

.search-result:hover{
  border-color: rgba(201, 169, 97, 0.5);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.search-result span{
  color: var(--muted);
  font-size: 0.85rem;
}

.search-mark{
  background: rgba(201, 169, 97, 0.35);
  color: var(--ink);
  padding: 0 2px;
  border-radius: 3px;
}

.search-highlight{
  background: rgba(201, 169, 97, 0.45);
  color: inherit;
  padding: 0 2px;
  border-radius: 3px;
}

.search-open nav{
  pointer-events: none;
  opacity: 0.4;
}

.search-open .search-trigger{
  pointer-events: auto;
  opacity: 1;
}

/* Add subtle vertical divider between nav links */
nav a + a::before{
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 1px;
}

body[data-theme="light"] nav a + a::before{
  background: rgba(0, 0, 0, 0.18);
}
/* Search feature temporarily removed */


/* Main */
main{
  padding: 18px 0 32px;
}

.section{
  padding: 18px 0 28px;
}

/* Hero */
.hero{
  padding: 34px 0 20px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: start;
}

.hero h2{
  margin: 0 0 10px;
  font-size: 2.15rem;
  line-height: 1.15;
  font-weight: 600;
}

.hero p{
  margin: 0 0 12px;
  color: var(--muted);
  max-width: 70ch;
}

.kicker{
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.page-title{
  margin: 0 0 14px;
  font-weight: 400;
  font-size: 1.6rem;
}

.subtopic-title{
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
}

.festival-tabs{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0 18px;
}

.festival-tab{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--surface-alt);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.festival-tab:hover{
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.34);
  filter: brightness(1.08);
}

.festival-tab:focus-visible{
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.primary-tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 24px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.primary-tab{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--surface-alt);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 150ms ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.primary-tab:hover{
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.34);
  filter: brightness(1.08);
}

.primary-tab:focus-visible{
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.festival-content{
  margin-bottom: 32px;
  scroll-margin-top: 120px;
}

.year-tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 16px;
}

.year-tab{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--surface-alt);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 120ms ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.year-tab:hover{
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.34);
  filter: brightness(1.08);
}

.list li > a {
  color: var(--brand-2);
  font-weight: inherit;
  display: inline;
  transition: color 150ms ease;
}

.list li > a:hover {
  color: #f1d99a;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.list li > a strong {
  font-weight: 600;
}

.anchor-target{
  scroll-margin-top: 120px;
}


/* Buttons */
.cta{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  text-decoration:none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
}

.btn.primary{
  background: var(--surface-alt);
  border: 1px solid transparent;
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  font-weight: 500;
}

.btn.primary:hover{
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.34);
  filter: brightness(1.08);
}

.btn.secondary{
  background: var(--surface-alt);
  border: 1px solid transparent;
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

body[data-theme="light"] .btn.primary,
body[data-theme="light"] .btn.secondary,
body[data-theme="light"] .hero--luxury .btn.primary,
body[data-theme="light"] .hero--luxury .btn.secondary{
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.14);
}

.btn.secondary:hover{
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.34);
  filter: brightness(1.08);
}

/* Contact form styles */
.contact-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.contact-info{ grid-column: span 5; }
.contact-form{ grid-column: span 7; }

@media (max-width: 900px){
  .contact-info, .contact-form{ grid-column: span 12; }
}

label{
  display:block;
  font-weight:500;
  color: var(--brand);
  margin-top: 8px;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

input[type="text"], input[type="email"], textarea{
  width:100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--surface-alt);
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 12px;
  transition: all 200ms ease;
}

body[data-theme="light"] input[type="text"],
body[data-theme="light"] input[type="email"],
body[data-theme="light"] textarea{
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus{
  outline: none;
  border-color: #1a5f4a;
  background: var(--surface-alt);
  box-shadow: 0 0 20px rgba(26, 95, 74, 0.15);
}

.contact-form .btn{ padding: 10px 14px; }

.hp-field{
  display: none;
}

/* Cards / Grid */
.card{
  background: var(--surface-gloss);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all 300ms ease;
  position: relative;
}

body[data-theme="light"] .card{
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.75));
  border-color: #ededed;
  box-shadow: 0 22px 45px rgba(17, 17, 17, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

body[data-theme="light"] .card:hover{
  border-color: rgba(26, 95, 74, 0.18);
  box-shadow: 0 28px 60px rgba(17, 17, 17, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.col-6{ grid-column: span 6; }
.col-12{ grid-column: span 12; }

.list{
  margin:0;
  padding-left: 18px;
  list-style: disc;
}

.contact-details{
  font-size: 0.85rem;
}

.list li{
  margin: 7px 0;
  font-size: 0.875rem;
}


/* Gallery placeholders */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.photo-grid{
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  justify-content: start;
}

.photo-grid .media-tile{
  margin: 0;
}

.photo-grid img{
  height: 200px;
}

.photo-grid .media-caption{
  text-align: center;
  font-size: 0.8rem;
}

.gallery-search{
  margin: 10px 0 18px;
  display: grid;
  gap: 6px;
}

.gallery-search label{
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.gallery-search input{
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--ink);
  font-size: 0.9rem;
}

.gallery-search input:focus{
  outline: none;
  border-color: var(--brand-2);
  box-shadow: 0 0 18px rgba(201, 169, 97, 0.2);
}

.album-tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.album-tab{
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease, filter 140ms ease;
}

.album-tab:hover{
  transform: translateY(-4px) scale(1.02);
  border-color: var(--brand-2);
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.32);
  filter: brightness(1.05);
}

.album-tab.is-active{
  background: var(--brand-2);
  color: #1a1a1a;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(201, 169, 97, 0.35);
}

.gallery-empty{
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery img{
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: block;
  cursor: zoom-in;
}

.gallery video{
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #000;
  display: block;
  cursor: pointer;
}

.media-tile{
  position: relative;
}

.media-caption{
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
  text-align: left;
}

.media-tile video,
.media-tile img{
  position: relative;
  z-index: 1;
}

.video-tile .play-icon{
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  z-index: 2;
  pointer-events: none;
}

.video-tile .play-icon::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
}

.lightbox{
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 5, 5, 0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
  z-index: 60;
}

.lightbox-media{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox.is-open{
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image,
.lightbox-video{
  max-width: min(92vw, 1100px);
  max-height: 85vh;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.92);
  transition: transform 200ms ease;
}

.lightbox-video{
  background: #000;
  width: min(92vw, 1100px);
  height: auto;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox.is-open .lightbox-image,
.lightbox.is-open .lightbox-video{
  transform: scale(1);
}

.lightbox-close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
}

.lightbox-close:focus-visible{
  outline: 2px solid var(--brand-2);
  outline-offset: 2px;
}

.lightbox-caption {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  margin: 0 0 24px 0;
  color: #f1f1f1;
  font-size: 1rem;
  text-align: center;
  width: min(90vw, 900px);
  padding: 10px 18px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 16px 16px 0 0;
  pointer-events: none;
  z-index: 100;
}

.lightbox-open{
  overflow: hidden;
}

.gallery .ph{
  height: 140px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26,95,74,0.12), rgba(201,169,97,0.08));
  border: 2px dashed #1a5f4a;
  display:flex;
  align-items:center;
  justify-content:center;
  color: #1a5f4a;
  font-weight: 700;
}

/* Timeline */
.timeline{
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.timeline-item{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.timeline-decade{
  align-self: start;
  justify-self: start;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-2);
  border-left: 4px solid var(--brand-2);
  padding-left: 10px;
}

.timeline-content h4{
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
}

.timeline-content p{
  margin: 0;
  color: var(--muted);
}

.badge-new{
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--brand-2);
  color: #1a1a1a;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 8px;
  line-height: 1;
  vertical-align: middle;
}

@media (max-width: 680px){
  .timeline-item{
    grid-template-columns: 1fr;
  }

  .timeline-decade{
    border-left: 0;
    border-bottom: 2px solid var(--brand-2);
    padding-left: 0;
    padding-bottom: 6px;
  }
}

/* Footer */
footer{
  margin-top: 38px;
  background: var(--surface);
  color: var(--ink);
  border-top: 2px solid #0f4a39;
  box-shadow: 0 -4px 16px rgba(26, 95, 74, 0.15);
}

footer .container{
  padding: 16px;
}

small{ font-size: 0.88rem; }
footer small{ font-size: 0.8rem; }

hr{
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 20px 0 16px;
}

code {
  background: rgba(26, 95, 74, 0.1);
  color: #1a5f4a;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.85em;
}

/* Responsive */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .col-6{ grid-column: span 12; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .hero h2{ font-size: 1.75rem; }
}

/* =========================================
   JEWEL TONE HERO
   ========================================= */

.hero--luxury {
  padding: 96px 0 64px;
  position: relative;
  background: var(--bg);
  isolation: isolate;
}

.hero--luxury::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.92));
  opacity: 1;
  z-index: -1;
}

body[data-theme="light"] .hero--luxury::before{
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(242, 242, 242, 0.92));
}

.hero--luxury .hero-inner {
  max-width: 880px;
}

/* Small eyebrow text */
.hero--luxury .hero-eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

/* Main heading */
.hero--luxury .hero-title {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--ink);
}

/* Subtitle */
.hero--luxury .hero-subtitle {
  margin: 0 0 34px;
  max-width: 70ch;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--muted);
}

/* Actions */
.hero--luxury .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home .hero-actions .btn{
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.home .hero-actions .btn:hover{
  transform: translateY(-5px) scale(1.04);
}

/* Buttons – refined, not flashy */
.hero--luxury .btn {
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 160ms ease;
}

.hero--luxury .btn.primary {
  background: var(--surface-alt);
  color: var(--ink);
  border: 1px solid transparent;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.hero--luxury .btn.primary:hover {
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.34);
  filter: brightness(1.08);
}

.feature-figure{
  margin: 16px 0 0;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface-gloss);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.feature-figure img{
  width: 100%;
  display: block;
  border-radius: 10px;
}

.feature-figure figcaption{
  margin: 10px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero--luxury .btn.secondary {
  background: var(--surface-alt);
  color: var(--ink);
  border: 1px solid transparent;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.hero--luxury .btn.secondary:hover {
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.34);
  filter: brightness(1.08);
}

/* Make header feel product-grade */
header {
  background: var(--surface);
  border-bottom: 2px solid #1a5f4a;
}

/* Mobile adjustments */
@media (max-width: 720px) {
  .hero--luxury {
    padding: 72px 0 48px;
  }

  .hero--luxury .hero-title {
    font-size: 2.2rem;
  }

  .hero--luxury .hero-subtitle {
    font-size: 1.05rem;
  }
}



