/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --plum-50:  #faf5f7;
  --plum-100: #f5e8ee;
  --plum-200: #ead4df;
  --plum-300: #d4a8be;
  --plum-400: #b87a96;
  --plum-500: #6b2f5b;
  --plum-600: #5a284d;
  --plum-700: #48203e;
  --plum-800: #37182f;
  --plum-900: #261020;
  --plum-950: #140810;

  --amber-50:  #fdf8e8;
  --amber-100: #faf0cc;
  --amber-200: #f5e099;
  --amber-300: #e8c55a;
  --amber-400: #d4a017;
  --amber-500: #b8860b;
  --amber-600: #926808;
  --amber-700: #6b4d06;
  --amber-800: #443204;
  --amber-900: #221902;

  --neutral-50:  #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --neutral-950: #0a0a0a;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  color: var(--neutral-800);
  background-color: var(--neutral-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--plum-500);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--plum-600);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--neutral-900);
  margin-bottom: var(--space-lg);
}

.section-title--center {
  text-align: center;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--neutral-600);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
}

.section-subtitle--center {
  text-align: center;
}

.text-accent {
  color: var(--plum-500);
  font-style: italic;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--plum-500);
  color: #fff;
  border-color: var(--plum-500);
}

.btn-primary:hover {
  background: var(--plum-600);
  border-color: var(--plum-600);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--plum-500);
  border-color: var(--plum-500);
}

.btn-ghost:hover {
  background: var(--plum-500);
  color: #fff;
}

.btn-ghost-dark {
  background: transparent;
  color: var(--neutral-700);
  border-color: var(--neutral-300);
}

.btn-ghost-dark:hover {
  background: var(--neutral-100);
  color: var(--neutral-900);
}

.btn-ghost-light {
  background: transparent;
  color: var(--plum-100);
  border-color: var(--plum-300);
}

.btn-ghost-light:hover {
  background: var(--plum-500);
  border-color: var(--plum-500);
  color: #fff;
}

.btn-full {
  width: 100%;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-200);
  transition: background var(--transition);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--neutral-900);
}

.nav-logo-mark {
  width: 28px;
  height: 28px;
  background: var(--plum-500);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.nav-logo-mark::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 8px solid var(--amber-400);
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--neutral-600);
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--transition);
}

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

.nav-cta {
  color: var(--plum-500) !important;
  border: 1px solid var(--plum-500);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: var(--plum-500);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--neutral-700);
  transition: all var(--transition);
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--neutral-50);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--neutral-600);
  padding: 4px;
}

.nav-overlay-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.nav-overlay-links a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--neutral-800);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-overlay-links a:hover {
  color: var(--plum-500);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--plum-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-plum {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--plum-950) 0%, var(--plum-800) 40%, var(--plum-700) 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 1px 1px, var(--amber-300) 1px, transparent 0);
  background-size: 40px 40px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px var(--space-lg) var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-400);
  margin-bottom: var(--space-md);
}

.hero-label-line {
  width: 32px;
  height: 1px;
  background: var(--amber-400);
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.hero-title-line {
  display: block;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  color: var(--neutral-100);
}

.hero-title-accent {
  display: block;
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--amber-400);
  font-style: italic;
}

.hero-title-name {
  display: block;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  color: var(--neutral-100);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--plum-200);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero-actions .btn-ghost {
  border-color: var(--plum-300);
  color: var(--plum-200);
}

.hero-actions .btn-ghost:hover {
  background: var(--plum-500);
  border-color: var(--plum-500);
  color: #fff;
}

.hero-image-col {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.hero-img {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.hero-img-primary {
  height: 100%;
  min-height: 480px;
}

.hero-img-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 55%;
  border: 4px solid var(--plum-800);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--plum-300);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ===== INTRO STRIP ===== */
.intro-strip {
  background: var(--plum-50);
  border-top: 1px solid var(--plum-100);
  border-bottom: 1px solid var(--plum-100);
}

.intro-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.intro-divider {
  flex: 0 0 60px;
  height: 1px;
  background: var(--plum-300);
}

.intro-text p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--plum-800);
}

.intro-text strong {
  color: var(--plum-500);
  font-weight: 500;
}

/* ===== ABOUT ===== */
.about {
  padding: var(--space-3xl) 0;
  background: var(--neutral-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-2xl);
  align-items: start;
}

.about-col-left {
  position: sticky;
  top: 120px;
}

.about-col-right p {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.85;
  margin-bottom: var(--space-md);
}

.about-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--neutral-200);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--plum-500);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--neutral-500);
  letter-spacing: 0.04em;
}

/* ===== BAKES ===== */
.bakes {
  padding: var(--space-3xl) 0;
  background: var(--neutral-50);
  border-top: 1px solid var(--neutral-200);
}

.bakes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.bake-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--neutral-200);
  transition: all var(--transition);
}

.bake-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(107, 47, 91, 0.1);
  border-color: var(--plum-200);
}

.bake-card-img {
  overflow: hidden;
  height: 260px;
}

.bake-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bake-card:hover .bake-card-img img {
  transform: scale(1.05);
}

.bake-card-body {
  padding: var(--space-md);
}

.bake-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--neutral-900);
  margin-bottom: 0.5rem;
}

.bake-card-body p {
  font-size: 0.88rem;
  color: var(--neutral-500);
  line-height: 1.7;
}

/* ===== PANTRY ===== */
.pantry {
  padding: var(--space-3xl) 0;
  background: var(--plum-900);
}

.pantry .section-label {
  color: var(--amber-400);
}

.pantry .section-title {
  color: var(--neutral-100);
}

.pantry-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.pantry-col-left p {
  font-size: 0.95rem;
  color: var(--plum-200);
  line-height: 1.85;
  margin-bottom: var(--space-md);
}

.pantry-list {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.pantry-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: var(--plum-100);
  line-height: 2;
}

.pantry-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 1px;
  background: var(--amber-400);
}

.pantry-col-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.pantry-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.pantry-img-item {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.pantry-img-item:first-child {
  grid-column: 1 / -1;
  height: 280px;
}

.pantry-img-item:not(:first-child) {
  height: 220px;
}

.pantry-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pantry-img-item:hover img {
  transform: scale(1.05);
}

/* ===== VISIT ===== */
.visit {
  padding: var(--space-3xl) 0;
  background: var(--neutral-50);
  border-top: 1px solid var(--neutral-200);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.visit-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition);
}

.visit-card:hover {
  border-color: var(--plum-200);
  box-shadow: 0 8px 30px rgba(107, 47, 91, 0.08);
}

.visit-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-sm);
  color: var(--plum-500);
}

.visit-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--neutral-900);
  margin-bottom: 0.5rem;
}

.visit-card p {
  font-size: 0.85rem;
  color: var(--neutral-500);
  line-height: 1.7;
}

.visit-card a {
  color: var(--plum-500);
}

.visit-card a:hover {
  color: var(--plum-600);
  text-decoration: underline;
}

.visit-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--neutral-200);
}

.visit-map-placeholder {
  background: var(--neutral-100);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

.visit-map-placeholder svg {
  color: var(--plum-400);
}

.visit-map-placeholder p {
  font-size: 0.9rem;
  color: var(--neutral-600);
}

/* ===== CTA ===== */
.cta {
  padding: var(--space-3xl) 0;
  background: var(--plum-700);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 1px 1px, var(--amber-300) 1px, transparent 0);
  background-size: 32px 32px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-2xl);
  align-items: center;
}

.cta-text .section-label {
  color: var(--amber-400);
}

.cta-text .section-title {
  color: var(--neutral-100);
  margin-bottom: var(--space-md);
}

.cta-text p {
  font-size: 0.95rem;
  color: var(--plum-200);
  line-height: 1.8;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* ===== CONTACT ===== */
.contact {
  padding: var(--space-3xl) 0;
  background: var(--neutral-50);
  border-top: 1px solid var(--neutral-200);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-col-left p {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.85;
  margin-bottom: var(--space-lg);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--neutral-200);
}

.contact-detail strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--neutral-400);
  margin-bottom: 0.3rem;
}

.contact-detail a,
.contact-detail span {
  font-size: 0.95rem;
  color: var(--neutral-700);
}

.contact-detail a:hover {
  color: var(--plum-500);
}

/* Form */
.contact-form {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-500);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--neutral-800);
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--plum-400);
  box-shadow: 0 0 0 3px rgba(107, 47, 91, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--neutral-400);
}

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

.form-note {
  font-size: 0.78rem;
  color: var(--neutral-400);
  text-align: center;
  margin-top: var(--space-sm);
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  text-align: center;
  padding: var(--space-2xl);
  background: var(--plum-50);
  border: 1px solid var(--plum-200);
  border-radius: var(--radius-md);
  color: var(--plum-700);
}

.form-success svg {
  color: var(--plum-500);
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--plum-700);
}

.form-success p {
  font-size: 0.9rem;
  color: var(--plum-600);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--neutral-950);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--neutral-800);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--neutral-200);
  margin-bottom: var(--space-sm);
}

.footer-logo-mark {
  width: 24px;
  height: 24px;
  background: var(--plum-500);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.footer-logo-mark::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 7px solid var(--amber-400);
}

.footer-logo span {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--neutral-500);
  line-height: 1.7;
}

.footer-nav strong,
.footer-info strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neutral-400);
  margin-bottom: var(--space-sm);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.85rem;
  color: var(--neutral-500);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--plum-400);
}

.footer-info address {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--neutral-500);
  line-height: 1.8;
}

.footer-info a {
  color: var(--plum-400);
}

.footer-info a:hover {
  color: var(--plum-300);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--neutral-600);
}

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-image-col {
    display: none;
  }

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

  .about-col-left {
    position: static;
  }

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

  .pantry-col-right {
    order: -1;
  }

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

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: row;
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
  }

  .hero-inner {
    padding: 100px var(--space-md) var(--space-2xl);
  }

  .hero-title-line,
  .hero-title-accent,
  .hero-title-name {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }

  .intro-strip-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  .intro-divider {
    width: 40px;
    height: 1px;
  }

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

  .pantry-img-grid {
    grid-template-columns: 1fr;
  }

  .pantry-img-item:first-child {
    grid-column: auto;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

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

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

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

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