/* =============================================
   THE LITTLE KITCHEN COMPANY
   Built by Cura Studio - curastudio.co.uk
   ============================================= */

:root {
  --sage:       #5C7F60;
  --sage-dark:  #3D5740;
  --sage-pale:  #EDF2ED;
  --dark:       #1A1A1A;
  --mid:        #5A5550;
  --light:      #9A958F;
  --rule:       #E8E4DE;
  --white:      #ffffff;
  --off:        #F9F7F4;
  --amber:      #C8893A;
  --display:    'Cormorant Garamond', Georgia, serif;
  --body:       'Nunito', sans-serif;
  --ui:         'Jost', sans-serif;
  --nav-h:      88px;
  --max:        1200px;
  --pad:        24px;
}
@media (min-width: 768px)  { :root { --pad: 48px; } }
@media (min-width: 1200px) { :root { --pad: 64px; } }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body { font-family: var(--body); color: var(--dark); background: var(--white); line-height: 1.8; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3 { font-family: var(--body); font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
h1 em, h2 em, h3 em { font-family: var(--display); font-weight: 300; font-style: italic; }
p { font-family: var(--body); font-size: 1rem; color: var(--mid); line-height: 1.82; }
p + p { margin-top: 1rem; }
strong { font-weight: 700; color: var(--dark); }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

.section-label {
  display: block;
  font-family: var(--ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.section-intro { margin-bottom: 3.5rem; }
.section-intro.centered { text-align: center; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-white { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }
.btn-ghost { background: rgba(0,0,0,0.2); color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-ghost:hover { background: rgba(0,0,0,0.4); border-color: var(--white); }
.btn-sage { background: var(--sage); color: var(--white); border-color: var(--sage); }
.btn-sage:hover { background: var(--sage-dark); border-color: var(--sage-dark); }
.btn-sage-outline { background: transparent; color: var(--sage); border-color: var(--sage); }
.btn-sage-outline:hover { background: var(--sage); color: var(--white); }
.btn-outline-white { background: transparent; color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }
.btn-outline-white:hover { color: var(--white); border-color: var(--white); }
.btn-full { width: 100%; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.66rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  border-bottom: 1px solid var(--sage);
  padding-bottom: 2px;
  transition: gap 0.2s ease;
}
.link-arrow::after { content: '→'; }
.link-arrow:hover { gap: 0.8rem; }

/* NAV */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--pad);
  width: 100%;
}
.logo { display: block; line-height: 0; }
.logo-img { height: 60px; width: auto; transition: filter 0.3s ease; }
@media (max-width: 899px) {
  .logo-img { height: 40px; }
}
.logo-img--dark { display: none; }
.logo-img--light { display: block; }
.site-header.scrolled .logo-img--light { filter: brightness(0); }

.nav-toggle { display: flex; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all 0.3s ease; }
.site-header.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.site-nav { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); padding: 2rem var(--pad) 2.5rem; border-bottom: 1px solid var(--rule); }
.site-nav.open { display: flex; }
.site-nav a { font-family: var(--ui); font-size: 0.85rem; color: var(--mid); padding: 0.85rem 0; border-bottom: 1px solid var(--rule); transition: color 0.2s; }
.site-nav a:hover { color: var(--sage); }
.site-nav .nav-cta { border-bottom: none; background: var(--sage); color: var(--white); text-align: center; border-radius: 2px; padding: 0.85rem; letter-spacing: 0.12em; font-size: 0.75rem; text-transform: uppercase; margin-top: 1.25rem; }
@media (max-width: 899px) {
  .site-nav .nav-dropdown { border-bottom: 1px solid var(--rule); }
  .site-nav .nav-dropdown-trigger { font-family: var(--ui); font-size: 0.85rem; color: var(--mid); padding: 0.85rem 0; display: flex; align-items: center; gap: 0.3rem; text-shadow: none; letter-spacing: 0; text-transform: none; font-weight: 400; }
  .site-nav .nav-dropdown-menu { position: static; box-shadow: none; border: none; border-left: 2px solid var(--rule); margin: 0 0 0.5rem 0.75rem; padding: 0.25rem 0; display: none; }
  .site-nav .nav-dropdown:hover .nav-dropdown-menu { display: block; }
  .site-nav .nav-dropdown-menu a { font-size: 0.82rem; padding: 0.55rem 0.75rem; border-bottom: none; color: var(--mid) !important; text-shadow: none !important; letter-spacing: 0; text-transform: none; }
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: flex; flex-direction: row; align-items: center;
    position: static; background: transparent; padding: 0; border: none; gap: 0;
  }
  .site-nav a {
    font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--white); padding: 0.5rem 0.9rem; border-bottom: none;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  }
  .site-nav a:hover { color: rgba(255,255,255,0.8); text-shadow: none; }
  .site-nav .nav-cta {
    margin-top: 0; margin-left: 0.5rem; padding: 0.6rem 1.4rem;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.5);
    text-shadow: none; border-radius: 2px;
  }
  .site-nav .nav-cta:hover { background: rgba(255,255,255,0.28); color: var(--white); }
  .site-header.scrolled .site-nav a { color: var(--mid); text-shadow: none; }
  .site-header.scrolled .site-nav a:hover { color: var(--sage); }
  .site-header.scrolled .site-nav .nav-cta { background: var(--sage); color: var(--white); border-color: var(--sage); }
  .site-header.scrolled .site-nav .nav-cta:hover { background: var(--sage-dark); }
  .site-nav a.active { border-bottom: 1px solid rgba(255,255,255,0.6); padding-bottom: calc(0.5rem - 1px); }
  .site-header.scrolled .site-nav a.active { border-bottom: 1px solid var(--sage); color: var(--mid); }
}

/* HERO */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-img {
  position: absolute;
  inset: 0;
  background: url('https://www.thelittlekitchencompany.com/wp-content/uploads/2016/06/Chocolate-cake-with-Strawberries.png') center center / cover no-repeat;
  z-index: 0;
}
.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,10,8,0.50);
}
.hero-left {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 3rem) var(--pad) 5rem;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.25rem;
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-left h1 {
  color: var(--white);
  margin-bottom: 2rem;
  max-width: 720px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}
.hero-left h1 em { color: rgba(255,255,255,0.92); display: block; }
.hero-left p { display: none; }
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* INTRO */
.intro { padding: 7rem 0; background: var(--white); }
.intro-inner { max-width: 720px; }
.intro-inner h2 { margin-bottom: 1.5rem; }
.intro-body { font-size: 1.05rem; margin-bottom: 2rem; }

/* CREDENTIALS BAR */
.cred-bar { background: var(--off); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 1rem 0; }
.cred-items { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; }
.cred-item { display: flex; align-items: center; gap: 0.5rem; font-family: var(--ui); font-size: 0.72rem; color: var(--mid); padding: 0.4rem 1.5rem; white-space: nowrap; }
.cred-icon { color: var(--sage); font-size: 0.8rem; }
.cred-divider { width: 1px; height: 14px; background: var(--rule); display: none; }
@media (min-width: 900px) { .cred-items { flex-wrap: nowrap; } .cred-divider { display: block; } }

/* SERVICES */
.services { padding: 7rem 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-item--large { grid-column: 1 / -1; }
}
@media (min-width: 1000px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-item--large { grid-column: 1 / 3; }
}
.service-item {
  background: var(--white);
  border: 1px solid var(--rule);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.service-item:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); transform: translateY(-3px); }
.service-item--large .service-img { height: 320px; }
.service-item:not(.service-item--large) .service-img { height: 200px; }
.service-img { width: 100%; flex-shrink: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.service-item:hover .service-img { transform: scale(1.03); }
.service-content { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.service-tag {
  display: inline-block;
  font-family: var(--ui); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sage); background: var(--sage-pale); padding: 0.2rem 0.6rem; border-radius: 20px; width: fit-content;
}
.service-label { font-family: var(--ui); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); display: block; }
.service-content h3 { color: var(--dark); }
.service-content p { color: var(--mid); font-size: 0.9rem; flex: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--ui); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sage); margin-top: 0.5rem; transition: gap 0.2s;
}
.service-link::after { content: '→'; }
.service-item:hover .service-link { gap: 0.65rem; }

/* PULL QUOTE */
.pull-quote { padding: 7rem 0; background: var(--sage); }
.pull-quote blockquote { max-width: 820px; margin: 0 auto; text-align: center; }
.pull-quote blockquote em { display: block; font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.6rem); font-style: italic; font-weight: 300; color: var(--white); line-height: 1.5; margin-bottom: 1.5rem; }
.pull-quote blockquote cite { font-family: var(--ui); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); font-style: normal; }

/* GALLERY */
.gallery { padding: 7rem 0; background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: 2.5rem 0 3rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(6, 1fr); gap: 8px; } }
.gallery-img { aspect-ratio: 1; background-size: cover; background-position: center; transition: opacity 0.3s; }
.gallery-img:hover { opacity: 0.85; }
.gallery-cta { display: block; width: fit-content; margin: 0 auto; }

/* ABOUT */
.about { padding: 7rem 0; background: var(--off); }
.about-grid { display: grid; gap: 4rem; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 6rem; } }
.about-img { width: 100%; aspect-ratio: 4/5; background-size: cover; background-position: center; }
.about-text-col h2 { margin-bottom: 1.5rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--rule); }
.stat-n { display: block; font-family: var(--display); font-size: 2.6rem; font-weight: 300; color: var(--sage); line-height: 1; margin-bottom: 0.3rem; }
.stat-l { display: block; font-family: var(--ui); font-size: 0.72rem; color: var(--light); line-height: 1.4; }

/* TESTIMONIALS */
.testimonials { padding: 7rem 0; background: var(--white); }
.testi-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .testi-grid { grid-template-columns: repeat(4, 1fr); } }
.testi-card { background: var(--off); border: 1px solid var(--rule); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.testi-stars { color: var(--amber); font-size: 0.85rem; letter-spacing: 2px; }
.testi-card p { font-family: var(--display); font-style: italic; font-size: 1.05rem; color: var(--dark); line-height: 1.7; flex: 1; }
.testi-card cite { font-family: var(--ui); font-size: 0.72rem; color: var(--light); letter-spacing: 0.06em; font-style: normal; }


/* CONTACT */
.contact { padding: 7rem 0; background: var(--white); }
.contact-grid { display: grid; gap: 4rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; gap: 6rem; } }
.contact-text h2 { margin-bottom: 1.5rem; }
.contact-details { margin: 2rem 0; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-detail-label { font-family: var(--ui); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--light); }
.contact-detail a, .contact-detail span { font-size: 0.95rem; color: var(--dark); }
.contact-detail a:hover { color: var(--sage); }
.contact-areas { font-size: 0.82rem; color: var(--light); margin-top: 1rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; background: var(--off); padding: 2.5rem; }
.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-family: var(--ui); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.85rem 1rem; font-family: var(--body); font-size: 0.95rem; color: var(--dark); background: var(--white); border: 1px solid var(--rule); border-radius: 0; transition: border-color 0.2s; 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='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A958F' stroke-width='1.5' fill='none' stroke-linecap='round'/%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 { outline: none; border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.78rem; color: var(--light); text-align: center; margin-top: -0.5rem; }

/* FOOTER */
.site-footer { background: var(--dark); padding: 5rem 0 0; }
.footer-grid { display: grid; gap: 3rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } .footer-brand { grid-column: 1 / -1; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } .footer-brand { grid-column: auto; } }
.footer-logo { height: 52px; width: auto; margin-bottom: 1rem; opacity: 0.85; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; font-family: var(--ui); font-size: 0.68rem; font-weight: 500; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.15); transition: all 0.2s; }
.footer-social a:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }
.footer-col h4 { font-family: var(--ui); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li, .footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-link { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-link:hover { color: var(--white); }
.footer-link.small { font-size: 0.75rem; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; padding: 1.75rem 0; }
.footer-credit { font-family: var(--ui); font-size: 0.72rem; color: rgba(255,255,255,0.25); text-align: center; }
.footer-credit a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-credit a:hover { color: var(--white); }
.footer-bottom p { font-family: var(--ui); font-size: 0.72rem; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-family: var(--ui); font-size: 0.72rem; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* NAV DROPDOWN */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); padding: 0.5rem 0.9rem; border-bottom: none;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8); cursor: pointer;
  display: flex; align-items: center; gap: 0.3rem; font-family: var(--ui);
  font-weight: 400; background: none; border: none;
}
.nav-dropdown-trigger::after { content: '▾'; font-size: 0.6rem; }
.site-header.scrolled .nav-dropdown-trigger { color: var(--mid); text-shadow: none; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--rule);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  min-width: 200px;
  z-index: 200;
  padding: 0.5rem 0;
  margin-top: 0;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid) !important;
  text-shadow: none !important;
  padding: 0.65rem 1.25rem;
  border-bottom: none !important;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu a:hover { color: var(--sage) !important; background: var(--off); }
/* QUOTE CAROUSEL */
.quote-carousel { position: relative; min-height: 160px; }
.quote-slide {
  display: none;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  animation: quoteFade 0.6s ease;
}
.quote-slide.active { display: block; }
@keyframes quoteFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.quote-slide em {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.quote-slide cite {
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-style: normal;
}
.quote-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.quote-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}
.quote-dot.active { background: var(--white); }

/* INSTAGRAM */
.instagram { padding: 7rem 0 0; background: var(--white); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .insta-grid { grid-template-columns: repeat(6, 1fr); }
}
.insta-item {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  display: block;
  position: relative;
  overflow: hidden;
}
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.insta-overlay span {
  font-size: 1.5rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
.insta-item:hover .insta-overlay { background: rgba(0,0,0,0.35); }
.insta-item:hover .insta-overlay span { opacity: 1; transform: scale(1); }

/* PREVIEW BAR */
.preview-bar {
  background: #1A1A1A;
  padding: 0.5rem var(--pad);
  text-align: center;
  width: 100%;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 201;
}
.preview-bar p {
  font-family: var(--ui);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin: 0;
}
.preview-bar strong { color: var(--white); font-weight: 600; }
/* Push everything below the preview bar + nav on mobile */
@media (max-width: 899px) {
  body { padding-top: calc(var(--nav-h) + 52px); }
  .site-header { top: 52px; }
  .hero { margin-top: calc(-1 * (var(--nav-h) + 52px)); padding-top: calc(var(--nav-h) + 52px); }
}
@media (min-width: 900px) {
  .site-header { top: 34px; }
}
