/* =========================================================
   SAFFRON KETTLE
   Main stylesheet
   Theme: Black + Gold
========================================================= */

:root {
  --black: #090909;
  --black-soft: #11110f;
  --black-card: #161612;
  --gold: #e5b64f;
  --gold-light: #f3d17a;
  --gold-dark: #b98a2e;
  --cream: #f5eddb;
  --cream-dark: #e9dfc9;
  --text-dark: #17140f;
  --text-light: #f7f0e2;
  --muted-light: #cfc5b2;
  --border-gold: rgba(229, 182, 79, 0.38);
  --max-width: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  font-family: var(--serif);
  color: var(--text-dark);
  background: var(--black);
  line-height: 1.7;
}

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

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

button {
  font: inherit;
}

.section-dark {
  background:
    radial-gradient(circle at 78% 48%, rgba(229, 182, 79, 0.12), transparent 30%),
    linear-gradient(120deg, #080808 0%, #10100d 55%, #18150e 100%);
  color: var(--text-light);
}

.section-light {
  background: var(--cream);
  color: var(--text-dark);
}

/* =========================================================
   NAVIGATION
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9, 9, 9, 0.97);
  border-bottom: 1px solid rgba(229, 182, 79, 0.18);
  backdrop-filter: blur(10px);
}

.nav-container {
  width: min(100% - 48px, var(--max-width));
  min-height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: #000;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-size: 25px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-light);
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

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

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

.menu-toggle {
  display: none;
  border: 1px solid var(--border-gold);
  background: transparent;
  padding: 9px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 4px;
  background: var(--gold);
}

/* =========================================================
   SHARED
========================================================= */

.eyebrow {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 5px;
  line-height: 1.4;
}

.eyebrow.gold {
  color: var(--gold);
}

.eyebrow.dark {
  color: var(--gold-dark);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 65px;
  text-align: center;
}

.section-heading h2,
.story-copy h2,
.contact-copy h2 {
  font-size: clamp(46px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -2px;
  margin: 18px 0 28px;
}

.section-heading h2 span,
.story-copy h2 span,
.contact-copy h2 span {
  color: var(--gold);
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: auto;
  color: var(--muted-light);
  font-size: 18px;
}

.dark-heading > p:last-child {
  color: #4d4438;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 55px;
  padding: 13px 29px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: #0a0a08;
  background: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-outline {
  color: var(--gold);
  border-color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  color: var(--black);
  background: var(--gold);
}

.btn-dark {
  color: var(--cream);
  background: var(--black);
}

.center-action {
  text-align: center;
  margin-top: 48px;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
}

.hero-container {
  width: min(100% - 48px, var(--max-width));
  min-height: 680px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 65px;
  padding: 70px 0;
}

.hero-copy h1 {
  color: var(--gold-light);
  font-size: clamp(76px, 9vw, 126px);
  line-height: 0.82;
  letter-spacing: -6px;
  margin: 26px 0 40px;
}

.hero-copy h2 {
  color: var(--text-light);
  font-size: clamp(38px, 4vw, 57px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-text {
  max-width: 620px;
  color: #d9cfbd;
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 550px;
}

.hero-logo-ring {
  width: min(510px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 18px;
  border: 1px solid rgba(229, 182, 79, 0.55);
  box-shadow:
    0 0 0 14px rgba(229, 182, 79, 0.035),
    0 0 65px rgba(229, 182, 79, 0.10);
  background: #050505;
}

.hero-logo-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.logo-caption {
  position: absolute;
  top: 12%;
  right: 12%;
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 13px;
}

/* =========================================================
   STORY
========================================================= */

.story {
  padding: 105px 0;
}

.story-container {
  width: min(100% - 48px, var(--max-width));
  margin: auto;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 85px;
  align-items: center;
}

.story-visual {
  text-align: center;
}

.story-logo-card {
  width: min(390px, 100%);
  margin: auto;
  padding: 28px;
  background: #050505;
  border: 1px solid rgba(185, 138, 46, 0.45);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.story-logo-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.story-caption {
  color: var(--gold-dark);
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 20px;
}

.story-copy > p {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.story-highlight {
  color: var(--gold-dark);
  font-size: 25px !important;
  font-weight: 700;
  margin-top: 23px;
}

.story-closing {
  padding-top: 8px;
  font-size: 20px !important;
}


/* =========================================================
   WHAT WE SERVE
========================================================= */

.serve {
  padding: 110px 0;
}

.serve-grid {
  width: min(100% - 48px, var(--max-width));
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.serve-card {
  min-height: 280px;
  padding: 32px 27px;
  border: 1px solid var(--border-gold);
  background: linear-gradient(145deg, rgba(255,255,255,0.035), rgba(229,182,79,0.025));
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.serve-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 182, 79, 0.8);
  background: rgba(229, 182, 79, 0.06);
}

.card-number {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 55px;
}

.serve-card h3 {
  color: var(--gold-light);
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 15px;
}

.serve-card p {
  color: var(--muted-light);
  font-size: 16px;
}

/* =========================================================
   WHAT WE SERVE — CARD ACCENT
========================================================= */

.serve-card-accent {
  width: 42px;
  height: 2px;

  margin-bottom: 24px;

  background: var(--gold);
}

.serve-card h3 {
  min-height: auto;
  margin-bottom: 18px;
}

.serve-card p {
  line-height: 1.65;
}

/* =========================================================
   WHAT WE SERVE — CLOSING STATEMENT
========================================================= */

.serve-closing {
  width: min(100% - 48px, var(--max-width));
  margin: 65px auto 0;
  padding-top: 35px;

  text-align: center;

  border-top: 1px solid var(--border-gold);
}

.serve-closing p {
  margin: 0;

  color: var(--muted-light);

  font-size: 21px;
  line-height: 1.4;
}

.serve-closing strong {
  display: block;

  margin-top: 4px;

  color: var(--gold-light);

  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}


/* ---------- What We Serve cards ---------- */

.serve-card h3 {
  min-height: 62px;
}

.serve-card p {
  line-height: 1.65;
}


/* ---------- Mobile ---------- */

@media (max-width: 760px) {

  .serve-closing {
    width: min(100% - 28px, var(--max-width));
    margin-top: 50px;
    padding-top: 28px;
  }

  .serve-closing p {
    font-size: 18px;
  }

  .serve-closing strong {
    font-size: 25px;
  }

}

/* =========================================================
   WHY SAFFRON KETTLE
========================================================= */

.why-section {
  padding: 110px 0;
  background: var(--cream);
  color: var(--text-dark);
}

.why-section .section-heading {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto 75px;
  text-align: center;
}

.why-section .section-heading .eyebrow {
  font-family: var(--serif);
  color: var(--gold-dark);
}

.why-section .section-heading h2 {
  max-width: 850px;
  margin: 0 auto 28px;
  color: var(--text-dark);
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -2px;
}

.why-section .section-heading h2 span {
  color: var(--gold-dark);
}

.why-section .section-heading > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: #5b5144;
  font-size: 18px;
  line-height: 1.7;
}

.why-pillars {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.why-pillar {
  position: relative;
  padding: 45px 35px 50px;
  border-right: 1px solid var(--border-dark);
}

.why-pillar:first-child {
  border-left: 1px solid var(--border-dark);
}

.why-pillar:last-child {
  border-right: none;
}

.why-pillar h3 {
  margin: 0 0 18px;
  color: var(--gold-dark);
  font-size: 30px;
  line-height: 1.15;
}

.why-pillar p {
  margin: 0;
  color: #5b5144;
  font-size: 16px;
  line-height: 1.7;
}

.why-closing {
  width: min(100% - 48px, 760px);
  margin: 65px auto 0;
  padding-top: 35px;
  text-align: center;
  border-top: 1px solid rgba(23, 20, 15, 0.18);
}

.why-closing span {
  display: block;
  color: var(--text-dark);
  font-size: 20px;
  line-height: 1.4;
}

.why-closing strong {
  display: block;
  margin-top: 5px;
  color: var(--gold-dark);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.25;
}

@media (max-width: 760px) {
  .why-section {
    padding: 75px 0;
  }

  .why-section .section-heading {
    width: min(100% - 28px, var(--max-width));
    margin-bottom: 55px;
  }

  .why-section .section-heading h2 {
    font-size: clamp(43px, 12vw, 65px);
    letter-spacing: -1.5px;
  }

  .why-section .section-heading > p:last-child {
    font-size: 16px;
  }

  .why-pillars {
    width: min(100% - 28px, var(--max-width));
    grid-template-columns: 1fr;
    border-bottom: none;
  }

  .why-pillar,
  .why-pillar:first-child {
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
    padding: 38px 25px 42px;
  }

  .why-pillar:last-child {
    border-bottom: none;
  }

  .why-pillar h3 {
    font-size: 27px;
  }

  .why-pillar p {
    font-size: 15px;
    line-height: 1.7;
  }

  .why-closing {
    width: min(100% - 28px, 760px);
    margin-top: 50px;
    padding-top: 28px;
  }

  .why-closing span {
    font-size: 18px;
  }

  .why-closing strong {
    font-size: 25px;
  }
}

/* =========================================================
   FOOD
========================================================= */

/* =========================================================
   FOOD
========================================================= */

.food {
  padding: 110px 0;
}

.food-grid {
  width: min(100% - 48px, var(--max-width));
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.food-card {
  background: #12120f;
  border: 1px solid var(--border-gold);
  overflow: hidden;
}

.food-placeholder {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(229, 182, 79, 0.18), transparent 25%),
    linear-gradient(145deg, #1b1912, #090908);
  color: rgba(229, 182, 79, 0.5);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.food-card-content {
  padding: 26px;
}

.food-region {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 700;
}

.food-card h3 {
  color: var(--text-light);
  font-size: 29px;
  margin: 7px 0;
}

.food-card-content p:last-child {
  color: var(--muted-light);
}

/* =========================================================
   CONTACT
========================================================= */

.contact {
  padding: 110px 0;
}

.contact-container {
  width: min(100% - 48px, var(--max-width));
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: 80px;
  align-items: center;
}

.contact-copy h2 {
  font-size: clamp(42px, 4.4vw, 60px);
}

.contact-copy > p {
  max-width: 650px;
  font-size: 19px;
}

.contact-details {
  display: flex;
  gap: 55px;
  margin-top: 40px;
  flex-wrap: wrap;
}


.contact-details small {
  color: var(--gold-dark);
  letter-spacing: 3px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
}

.contact-details strong {
  font-size: 18px;
}

.contact-card {
  background: var(--black);
  color: var(--text-light);
  padding: 45px;
  text-align: center;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.contact-card img {
  width: 125px;
  height: 125px;
  object-fit: cover;
  margin: 0 auto 28px;
}

.contact-card h3 {
  color: var(--gold-light);
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-card p {
  color: var(--muted-light);
  margin-bottom: 28px;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  background: #050505;
  color: var(--text-light);
  border-top: 1px solid rgba(229, 182, 79, 0.18);
}

.footer-container {
  width: min(100% - 48px, var(--max-width));
  margin: auto;
  padding: 45px 0 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  color: var(--gold);
  font-size: 21px;
}

.footer-brand span {
  color: var(--muted-light);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 23px;
  font-size: 14px;
  font-weight: 700;
}

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

.copyright {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(229, 182, 79, 0.15);
  padding-top: 22px;
  color: #827967;
  font-family: var(--sans);
  font-size: 12px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

  .nav-links {
    gap: 18px;
    font-size: 15px;
  }

  .hero-container {
    grid-template-columns: 1fr 0.8fr;
    gap: 35px;
  }

  .hero-copy h1 {
    font-size: clamp(65px, 9vw, 95px);
  }

  .story-container {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 50px;
  }
  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .food-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-container {
    gap: 45px;
  }
}

@media (max-width: 760px) {

  html {
    scroll-padding-top: 70px;
  }

  .nav-container {
    min-height: 70px;
    width: min(100% - 30px, var(--max-width));
  }

  .brand-name {
    font-size: 21px;
  }

  .brand-mark {
    width: 43px;
    height: 43px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #090909;
    border-bottom: 1px solid var(--border-gold);
    padding: 8px 20px 18px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 5px;
    border-bottom: 1px solid rgba(229, 182, 79, 0.10);
  }

  .hero {
    min-height: auto;
  }

  .hero-container {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 70px 0 80px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(65px, 18vw, 100px);
    letter-spacing: -4px;
  }

  .hero-copy h2 {
    font-size: clamp(35px, 9vw, 48px);
  }

  .hero-text {
    margin: auto;
    font-size: 17px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-logo-wrap {
    min-height: auto;
    padding: 20px 0;
  }

  .hero-logo-ring {
    width: min(360px, 82vw);
  }

  .logo-caption {
    top: 8%;
    right: 11%;
  }

  .story,
  .serve,
  .why-section,
  .food,
  .contact {
    padding: 75px 0;
  }

  .story-container,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-visual {
    order: 2;
  }

  .story-copy {
    order: 1;
  }

  .story-copy h2,
  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(43px, 12vw, 65px);
  }

  .story-copy > p {
    font-size: 17px;
  }
  .serve-grid,
  .food-grid {
    grid-template-columns: 1fr;
  }

  .serve-card {
    min-height: auto;
  }

  .contact-details {
    gap: 25px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 430px) {

  .nav-container,
  .hero-container,
  .story-container,
  .serve-grid,
  .why-grid,
  .food-grid,
  .contact-container,
  .footer-container {
    width: min(100% - 28px, var(--max-width));
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .hero-copy h1 {
    font-size: 63px;
  }

  .hero-copy h2 {
    font-size: 35px;
  }

  .hero-text {
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .contact-card {
    padding: 32px 22px;
  }
}

/* =========================================================
   OUR STORY — UPDATED STORY BEATS
========================================================= */

.story-beats {
  margin: 28px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  width: 100%;
  text-align: left;
}

.story-beats div {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.45;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.story-beats span {
  color: var(--gold-dark);
}

.story-visual > h4 {
  max-width: 390px;
  margin: 28px auto 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.25;
  color: var(--gold-dark);
  text-align: left;
}

.story-visual > p:not(.story-caption) {
  max-width: 390px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .story-beats {
    width: min(100%, 430px);
  }

  .story-visual > h4,
  .story-visual > p:not(.story-caption) {
    max-width: 430px;
  }
}

/* =========================================================
   FINAL SECTION HEADING SYSTEM
========================================================= */

.section-heading {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto 50px;
}

.section-heading .eyebrow {
  display: block;
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1.25;
}

.section-heading h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -1.2px;
}

.section-heading h2 span {
  color: var(--gold);
}

.section-light .section-heading h2 { color: var(--text-dark); }
.section-dark .section-heading h2 { color: var(--text-light); }

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

.section-heading > p:last-child {
  max-width: 680px;
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
}

.section-light .section-heading > p:last-child { color: #5b5144; }
.section-dark .section-heading > p:last-child { color: var(--muted-light); }

/* ---------- One-scroll-window spacing ---------- */

.story,
.serve,
.why-section,
.food,
.contact {
  padding-top: 78px;
  padding-bottom: 78px;
}

/* ---------- Smaller section hero statements ---------- */

.story .section-heading h2,
.serve .section-heading h2,
.why-section .section-heading h2,
.food .section-heading h2,
.contact .section-heading h2 {
  font-size: clamp(42px, 5vw, 64px);
}

@media (max-width: 760px) {
  .section-heading {
    width: min(100% - 28px, var(--max-width));
    margin-bottom: 40px;
  }

  .section-heading .eyebrow {
    margin-bottom: 13px;
    font-size: 11px;
    letter-spacing: 3px;
  }

  .section-heading h2,
  .story .section-heading h2,
  .serve .section-heading h2,
  .why-section .section-heading h2,
  .food .section-heading h2,
  .contact .section-heading h2 {
    font-size: clamp(36px, 10vw, 52px);
    line-height: 1.03;
    letter-spacing: -0.8px;
  }

  .section-heading > p:last-child {
    font-size: 15px;
    line-height: 1.55;
  }

  .story,
  .serve,
  .why-section,
  .food,
  .contact {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* =========================================================
   WHY SAFFRON KETTLE — tighter intro to pillars
========================================================= */

.why-section .section-heading {
  margin-bottom: 30px;
}

@media (max-width: 760px) {
  .why-section .section-heading {
    margin-bottom: 24px;
  }
}


/* =========================================================
   FINAL SECTION LABEL SYSTEM
   Matches HOMEMADE • AUTHENTIC • INDIAN
========================================================= */

.section-heading .eyebrow,
.story-copy > .eyebrow,
.contact-copy > .eyebrow {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 5px;
  line-height: 1.4;
  color: var(--gold);
}

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


/* =========================================================
   WHY SAFFRON KETTLE — PILLARS
   Styled like WHAT WE SERVE cards
========================================================= */

.why-pillars {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border: none;
}

.why-pillar,
.why-pillar:first-child,
.why-pillar:last-child {
  position: relative;
  min-height: 280px;
  padding: 32px 27px;
  border: 1px solid rgba(185, 138, 46, 0.38);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.55),
    rgba(229, 182, 79, 0.045)
  );
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.why-pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 138, 46, 0.8);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.72),
    rgba(229, 182, 79, 0.09)
  );
  box-shadow: 0 14px 30px rgba(23, 20, 15, 0.08);
}

.why-pillar h3 {
  margin: 0 0 18px;
  color: var(--gold-dark);
  font-size: 28px;
  line-height: 1.1;
}

.why-pillar p {
  margin: 0;
  color: #5b5144;
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .why-pillars {
    width: min(100% - 28px, var(--max-width));
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-pillar,
  .why-pillar:first-child,
  .why-pillar:last-child {
    min-height: 0;
    padding: 30px 25px;
    border: 1px solid rgba(185, 138, 46, 0.38);
  }

  .why-pillar:hover {
    transform: translateY(-3px);
  }

  .why-pillar h3 {
    font-size: 27px;
  }
}


/* =========================================================
   UNIFIED CARD LANGUAGE
   WHAT WE SERVE + WHY SAFFRON KETTLE
========================================================= */

/* Shared card geometry and motion */
.serve-card,
.why-pillar {
  min-height: 280px;
  padding: 32px 27px;
  border: 1px solid var(--border-gold);
  border-radius: 0;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

/* Shared hover behaviour */
.serve-card:hover,
.why-pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 182, 79, 0.8);
  box-shadow: none;
}

/* What We Serve keeps its dark-section background language */
.serve-card {
  background: rgba(255, 255, 255, 0.03);
}

.serve-card:hover {
  background: rgba(229, 182, 79, 0.06);
}

/* Why uses the same card language, adapted to the cream section */
.why-pillars {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border: none;
}

.why-pillar,
.why-pillar:first-child,
.why-pillar:last-child {
  position: relative;
  min-height: 280px;
  padding: 32px 27px;
  border: 1px solid var(--border-gold);
  background: rgba(23, 20, 15, 0.025);
}

.why-pillar:hover {
  background: rgba(229, 182, 79, 0.06);
  box-shadow: none;
}

/* Shared card typography */
.serve-card h3,
.why-pillar h3 {
  margin-bottom: 14px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}

.serve-card p,
.why-pillar p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

/* Preserve section-specific text colours */
.why-pillar h3 {
  color: var(--gold-dark);
}

.why-pillar p {
  color: #5b5144;
}

/* Responsive card mechanics are shared.
   Why remains 3 -> 1 because it has exactly three pillars;
   What We Serve retains its content-appropriate grid. */
@media (max-width: 760px) {
  .serve-card,
  .why-pillar {
    min-height: 0;
    padding: 30px 25px;
  }

  .serve-card:hover,
  .why-pillar:hover {
    transform: translateY(-3px);
  }

  .why-pillars {
    width: min(100% - 28px, var(--max-width));
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .serve-card h3,
  .why-pillar h3 {
    font-size: 27px;
  }

  .serve-card p,
  .why-pillar p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* =========================================================
   V1.3 — FEATURED FOOD
========================================================= */

.featured-food {
  padding: 90px 0 100px;
}


.featured-food-heading {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto 55px;
}


.featured-food-heading h2 {
  margin-bottom: 0;
}


.featured-grid {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 22px;
}


.featured-card {
  display: flex;
  flex-direction: column;

  min-width: 0;
  overflow: hidden;

  border: 1px solid var(--border-gold);

  background: var(--black-card);

  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.14);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


.featured-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(229, 182, 79, 0.8);

  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.22);
}


.featured-image {
  width: 100%;

  aspect-ratio: 4 / 3;

  overflow: hidden;
}


.featured-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.5s ease;
}


.featured-card:hover .featured-image img {
  transform: scale(1.04);
}


.featured-content {
  flex: 1;

  padding: 22px 24px 24px;
}


.featured-category {
  color: var(--gold);

  font-family: var(--sans);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 3px;
  line-height: 1.4;

  margin-bottom: 8px;
}


.featured-content h3 {
  color: var(--text-light);

  font-size: 28px;
  line-height: 1.1;

  margin-bottom: 10px;
}


.featured-description {
  color: var(--muted-light);

  font-size: 16px;
  line-height: 1.6;

  margin: 0;
}


.featured-link {
  display: inline-block;

  margin-top: 18px;

  color: var(--gold-light);

  font-family: var(--sans);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}


/* =========================================================
   FEATURED FOOD — TABLET
========================================================= */

@media (max-width: 999px) {

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .featured-card:last-child {
    grid-column: 1 / -1;

    width: calc((100% - 22px) / 2);

    justify-self: center;
  }

}


/* =========================================================
   FEATURED FOOD — MOBILE
========================================================= */

@media (max-width: 760px) {

  .featured-food {
    padding: 75px 0 80px;
  }


  .featured-food-heading {
    width: min(100% - 28px, var(--max-width));

    margin-bottom: 38px;
  }


  .featured-grid {
    width: min(100% - 28px, var(--max-width));

    grid-template-columns: 1fr;

    gap: 20px;
  }


  .featured-card:last-child {
    grid-column: auto;

    width: 100%;
  }


  .featured-content {
    padding: 20px 20px 22px;
  }


  .featured-content h3 {
    font-size: 25px;
  }

}

/* =========================================================
   FEATURED FOOD — CAROUSEL DOTS
   V1.3
========================================================= */

.featured-image {
  position: relative;
}

.featured-dish-name {
  position: absolute;

  left: 20px;
  right: 20px;
  bottom: 24px;

  z-index: 2;

  color: #e5b64f;
  font-family: var(--serif);
  font-size: 9px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;

  text-shadow:
    0 1px 6px rgba(0, 0, 0, 0.65);
}

.featured-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;

  z-index: 2;
}

.featured-dot {
  width: 7px;
  height: 7px;

  padding: 0;
  margin: 0;

  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;

  background: transparent;

  cursor: pointer;

  opacity: 0.75;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background-color 0.25s ease;
}

.featured-dot:hover {
  opacity: 1;
  transform: scale(1.2);
}

.featured-dot.active {
  background-color: #e5b64f;
  border-color: #e5b64f;
  opacity: 1;
}


/* Keep dots accessible without making them visually heavy */

.featured-dot:focus-visible {
  outline: 1px solid #e5b64f;
  outline-offset: 3px;
}

/* Featured Food — smooth image/dish-name transition */

.featured-image img,
.featured-dish-name {
  transition: opacity 0.7s ease;
}

/* =========================================================
   CONTACT / ORDER — V1.5
========================================================= */

.contact {
  padding: 100px 6%;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;

  align-items: start;
}


/* =========================================================
   CONTACT COPY
========================================================= */

.contact-copy {
  max-width: 520px;
}

.contact-copy h2 {
  margin-bottom: 25px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 500px;
  line-height: 1.8;
}


/* =========================================================
   CONTACT DETAILS
   Premium vertical contact treatment
========================================================= */

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  width: 100%;

  padding-left: 18px;
  border-left: 1px solid rgba(184, 134, 43, 0.45);
}


/* ---------------------------------------------------------
   Individual contact row
--------------------------------------------------------- */

.contact-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
}


/* ---------------------------------------------------------
   Modern gold icon
--------------------------------------------------------- */

.contact-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 19px;
  height: 19px;

  fill: none;
  stroke: #b8862b;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ---------------------------------------------------------
   Contact text
--------------------------------------------------------- */

.contact-detail strong {
  display: block;

  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.01em;

  color: #171512;
}


/* ---------------------------------------------------------
   Contact links
--------------------------------------------------------- */

.contact-detail a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-detail a:hover {
  color: #b8862b;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

  .contact-details {
    gap: 17px;
    margin-top: 35px;
    padding-left: 16px;
  }

  .contact-detail {
    gap: 13px;
  }

  .contact-icon {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
  }

  .contact-icon svg {
    width: 18px;
    height: 18px;
  }

  .contact-detail strong {
    font-size: 1rem;
    font-weight: 600;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 520px) {

  .contact-details {
    gap: 16px;
  }

  .contact-detail strong {
    font-size: 0.96rem;
  }

}


/* =========================================================
   CONTACT NOTE
========================================================= */

.contact-note {
  margin-top: 40px;
  padding-left: 0;

  border-left: none;
}

.contact-note p {
  margin: 0 0 10px;
  line-height: 1.7;
}

.contact-note p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   FORM CARD
========================================================= */

.contact-form-card {
  padding: 45px;

  background: #111111;

  border: 1px solid rgba(176, 138, 62, 0.35);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.12);
}

.contact-form-eyebrow {
  margin: 0 0 12px;

  color: #b08a3e;

  font-size: 0.72rem;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.contact-form-card h3 {
  margin: 0 0 10px;

  color: #ffffff;

  font-size: 2rem;
  font-weight: 500;
}

.contact-form-intro {
  margin: 0 0 30px;

  color: rgba(255, 255, 255, 0.72);

  line-height: 1.7;
}


/* =========================================================
   FORM
========================================================= */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  color: rgba(255, 255, 255, 0.85);

  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  box-sizing: border-box;

  padding: 13px 14px;

  border: 1px solid rgba(255, 255, 255, 0.18);

  background: #181818;

  color: #ffffff;

  font-family: inherit;
  font-size: 0.95rem;

  border-radius: 0;

  outline: none;

  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #b08a3e;

  background: #1c1c1c;
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}


/* =========================================================
   SELECT
========================================================= */

.form-field select {
  appearance: auto;
}


/* =========================================================
   SUBMIT
========================================================= */

.contact-submit {
  align-self: flex-start;

  border: none;

  cursor: pointer;

  margin-top: 5px;
}

.contact-form-note {
  margin: 0;

  color: rgba(255, 255, 255, 0.45);

  font-size: 0.78rem;
  line-height: 1.5;
}

.contact-form-privacy {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 0.75rem;
}

.contact-form-privacy strong {
  color: rgba(255, 255, 255, 0.85);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

  .contact {
    padding: 75px 6%;
  }

  .contact-container {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .contact-copy {
    max-width: none;
  }

  .contact-details {
  grid-template-columns: 1fr;
  gap: 20px;
}
  .contact-form-card {
    padding: 30px 25px;
  }

}


@media (max-width: 520px) {

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

  .contact-form-card {
    padding: 25px 20px;
  }

  .contact-form-card h3 {
    font-size: 1.7rem;
  }

}

/* =========================================================
   PRIVACY POLICY
========================================================= */

.privacy-page {
  min-height: 80vh;
  padding: 100px 20px;
}

.privacy-container {
  max-width: 850px;
  margin: 0 auto;
}

.privacy-container h1 {
  margin-bottom: 30px;
}

.privacy-container h2 {
  margin-top: 45px;
  margin-bottom: 15px;
}

.privacy-container p {
  line-height: 1.7;
}

.privacy-intro {
  font-size: 1.15rem;
  max-width: 720px;
}

.privacy-container a {
  color: inherit;
}

.privacy-updated {
  margin-top: 50px;
  font-size: 0.9rem;
  opacity: 0.65;
}

.privacy-back {
  display: inline-block;
  margin-top: 30px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

