/* ===========================
   THE PASTA LAB – Stylesheet
   =========================== */

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

:root {
  --cream:     #fdf6ee;
  --terracotta:#c8603a;
  --terracotta-dark: #a84e2c;
  --olive:     #5a6b3a;
  --brown:     #3d2b1f;
  --warm-grey: #8c7b6e;
  --white:     #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(61,43,31,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--brown);
  line-height: 1.6;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn--primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn--ghost:hover {
  background: var(--brown);
  color: var(--white);
}
.btn--sm {
  padding: 8px 18px;
  font-size: 13px;
}
.btn--full { width: 100%; text-align: center; }

/* ---- SECTION TITLES ---- */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  text-align: center;
  color: var(--brown);
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--warm-grey);
  font-size: 17px;
  margin-bottom: 48px;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(253,246,238,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,96,58,0.12);
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--terracotta);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--brown);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--terracotta); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__burger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--brown);
}

/* Cart button in nav */
.cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  position: relative;
}
.cart-btn:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
}
.cart-count {
  background: var(--white);
  color: var(--terracotta);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  max-width: 1140px;
  margin: 0 auto;
  gap: 60px;
}
.hero__content { flex: 1; }
.hero__tag {
  display: inline-block;
  background: rgba(200,96,58,0.12);
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--brown);
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 18px;
  color: var(--warm-grey);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- POUCH VISUAL ---- */
.hero__visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pouch-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.pouch {
  width: 220px;
  border-radius: 18px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  cursor: default;
}
.pouch:hover { transform: translateY(-6px) rotate(-1deg); }
.pouch--pasta {
  background: linear-gradient(135deg, #f5e6c8, #e8c98a);
  height: 200px;
}
.pouch--sauce {
  background: linear-gradient(135deg, #e8a07a, #c8603a);
  height: 180px;
}
.pouch__label {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 6px;
}
.pouch--sauce .pouch__label { color: var(--white); }
.pouch__sub {
  font-size: 12px;
  color: var(--warm-grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pouch--sauce .pouch__sub { color: rgba(255,255,255,0.75); }

/* ---- HOW IT WORKS ---- */
.how {
  background: var(--brown);
  color: var(--white);
  padding: 100px 0;
}
.how .section-title { color: var(--white); }
.how .section-sub { color: rgba(255,255,255,0.6); }
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 0 24px;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
}
.step__icon { font-size: 48px; margin-bottom: 16px; display: block; }
.step h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--white);
}
.step p { color: rgba(255,255,255,0.65); font-size: 15px; }
.step__arrow {
  font-size: 28px;
  color: var(--terracotta);
  padding-top: 80px;
  flex-shrink: 0;
}

/* ---- MENU ---- */
.menu { padding: 100px 0; }
.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

/* Menu tabs */
.menu-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.menu-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 2px solid rgba(61,43,31,0.15);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--warm-grey);
  cursor: pointer;
  transition: all 0.2s ease;
}
.menu-tab .tab-sub {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.menu-tab:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}
.menu-tab.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200,96,58,0.3);
}

/* Tab content */
.tab-content { display: none; }
.tab-content.active { display: block; }

.pouches-intro {
  text-align: center;
  color: var(--warm-grey);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Dish cards */
.dish-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(61,43,31,0.15);
}
.dish-card__img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dish-card__emoji { font-size: 64px; }
.dish-card__body { padding: 20px 24px 24px; }
.dish-card__tags { margin-bottom: 8px; display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  display: inline-block;
  background: rgba(200,96,58,0.12);
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}
.tag--pouch {
  background: rgba(90,107,58,0.12);
  color: var(--olive);
}
.tag--gold {
  background: rgba(232,197,71,0.2);
  color: #8a6f00;
}
.dish-card__body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--brown);
}
.dish-card__body p { color: var(--warm-grey); font-size: 14px; line-height: 1.6; }
.dish-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--terracotta);
}

/* Extras / sides */
.extras-section {
  margin-top: 48px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.extras-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 20px;
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.extra-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(61,43,31,0.1);
  gap: 12px;
}
.extra-item__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.extra-item__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--brown);
}
.extra-item__desc {
  font-size: 12px;
  color: var(--warm-grey);
}
.extra-item__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.price-sm {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--terracotta);
}

/* ---- CART SIDEBAR ---- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(61,43,31,0.45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 100vw;
  background: var(--white);
  z-index: 201;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(61,43,31,0.18);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(61,43,31,0.1);
}
.cart-sidebar__header h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--brown);
}
.cart-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--warm-grey);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.cart-close:hover { color: var(--brown); }

.cart-sidebar__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}
.cart-empty {
  text-align: center;
  color: var(--warm-grey);
  font-size: 15px;
  line-height: 1.7;
  padding: 40px 0;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(61,43,31,0.08);
}
.cart-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cart-item__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--brown);
}
.cart-item__type {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--warm-grey);
}
.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(61,43,31,0.2);
  background: none;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  transition: all 0.15s;
}
.qty-btn:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}
.qty-num {
  font-weight: 700;
  font-size: 15px;
  min-width: 20px;
  text-align: center;
  color: var(--brown);
}
.cart-item__price {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 15px;
  color: var(--terracotta);
  min-width: 52px;
  text-align: right;
}
.cart-item__remove {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--warm-grey);
  cursor: pointer;
  padding: 0 0 0 4px;
  line-height: 1;
  transition: color 0.15s;
}
.cart-item__remove:hover { color: var(--terracotta); }

.cart-sidebar__footer {
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(61,43,31,0.1);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 16px;
}
.cart-total span:last-child {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--terracotta);
}

/* ---- CHECKOUT MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(61,43,31,0.55);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal {
  background: var(--white);
  border-radius: 16px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(61,43,31,0.25);
  overflow: hidden;
}
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(61,43,31,0.1);
  flex-shrink: 0;
}
.modal__header h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--brown);
}
.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--warm-grey);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--brown); }
.modal__body {
  overflow-y: auto;
  padding: 24px 28px 28px;
}

/* Checkout form */
.form-section { margin-bottom: 24px; }
.form-section__title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brown);
  margin-bottom: 12px;
}
.form-input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(61,43,31,0.18);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--brown);
  background: var(--cream);
  margin-bottom: 10px;
  transition: border-color 0.2s;
  outline: none;
  appearance: auto;
}
.form-input:focus { border-color: var(--terracotta); }
.form-input::placeholder { color: var(--warm-grey); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form-hint {
  font-size: 12px;
  color: var(--warm-grey);
  margin-top: -4px;
}

/* Radio group */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid rgba(61,43,31,0.15);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--brown);
  transition: all 0.2s;
}
.radio-label:hover { border-color: var(--terracotta); }
.radio-label input[type="radio"] {
  accent-color: var(--terracotta);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.radio-label:has(input:checked) {
  border-color: var(--terracotta);
  background: rgba(200,96,58,0.06);
}

/* Order summary in checkout */
.order-summary {
  background: var(--cream);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}
.order-summary h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brown);
  margin-bottom: 10px;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--warm-grey);
  padding: 4px 0;
}
.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
  padding: 12px 0;
  border-top: 1.5px solid rgba(61,43,31,0.12);
  margin-bottom: 8px;
}
.checkout-total span:last-child {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--terracotta);
}

/* Success modal */
.modal--success {
  text-align: center;
  padding: 48px 40px;
  align-items: center;
  max-width: 400px;
}
.success-icon { font-size: 64px; margin-bottom: 16px; }
.modal--success h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--brown);
  margin-bottom: 12px;
}
.modal--success p {
  color: var(--warm-grey);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ---- WHY US ---- */
.why {
  background: #f5ece0;
  padding: 100px 0;
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why__text p {
  color: var(--warm-grey);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.why__list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why__list li {
  font-size: 15px;
  font-weight: 500;
  color: var(--brown);
}
.why__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.badge {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.badge__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 8px;
}
.badge__label {
  font-size: 13px;
  color: var(--warm-grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- ABOUT ---- */
.about { padding: 100px 0; }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
.about__img-placeholder {
  width: 280px;
  height: 320px;
  background: linear-gradient(135deg, #e8c98a, #c8603a);
  border-radius: 140px 140px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 96px;
}
.about__text p {
  color: var(--warm-grey);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--brown);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 0;
  font-size: 14px;
}
.footer__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
}
.footer__inner p { margin-bottom: 6px; line-height: 1.6; }
.footer__inner strong { color: var(--white); }
.footer__inner a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer__inner a:hover { color: var(--terracotta); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 40px;
  text-align: center;
  font-size: 13px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding-top: 100px; text-align: center; }
  .hero__sub { margin: 0 auto 40px; }
  .hero__cta { justify-content: center; }
  .why__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__inner { grid-template-columns: 1fr; text-align: center; }
  .about__img-placeholder { margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav { padding: 16px 20px; }
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .cart-btn .cart-btn__label { display: none; }
  .hero { padding: 100px 20px 60px; }
  .step__arrow { display: none; }
  .steps { gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; }
  .cart-sidebar { width: 100vw; }
  .menu-tab { padding: 14px 20px; font-size: 14px; }
  .extras-section { padding: 20px; }
}

/* ============================================================
   ADDITIONS: Announcement Bar, Philosophy, Testimonials
   ============================================================ */

/* ---- ANNOUNCEMENT BAR ---- */
.announcement-bar {
  background: #3d2b1f;
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.announcement-bar a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
}

/* ---- NAV / HERO ADJUSTMENT FOR ANNOUNCEMENT BAR ---- */
.nav {
  top: 40px; /* height of announcement bar */
}

.hero {
  padding-top: 160px; /* account for announcement bar + nav */
}

/* ---- PHILOSOPHY ---- */
.philosophy {
  padding: 80px 0;
  background: white;
}
.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.philosophy__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--brown);
  margin-bottom: 20px;
}
.philosophy__text p {
  color: var(--warm-grey);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.philosophy__features {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.philosophy__features li {
  font-size: 15px;
  font-weight: 500;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 10px;
}
.philosophy__visual {
  background: linear-gradient(135deg, #f5e6c8, #e8c98a);
  border-radius: 24px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  background: #f5ece0;
  padding: 80px 0;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(61,43,31,0.08);
}
.testimonial-card__stars {
  font-size: 18px;
  margin-bottom: 12px;
  color: #e8b84b;
}
.testimonial-card__quote {
  font-size: 15px;
  color: var(--warm-grey);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-card__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--brown);
}
.testimonial-card__suburb {
  font-size: 12px;
  color: var(--warm-grey);
}

/* ---- RESPONSIVE ADDITIONS ---- */
@media (max-width: 900px) {
  .philosophy__grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .hero { padding-top: 140px; }
}

@media (max-width: 640px) {
  .announcement-bar { font-size: 11px; padding: 8px 12px; }
  .nav { top: 36px; }
  .hero { padding-top: 140px; }
}
