/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --plum:        #4A2C5A;
  --plum-dark:   #351F42;
  --plum-light:  #6B4070;
  --plum-faint:  #F5EFF7;
  --amber:       #C8952E;
  --amber-light: #D4A853;
  --amber-pale:  #FDF6E3;
  --cream:       #FDF9F3;
  --cream-dark:  #F5EDE0;
  --text:        #1E1424;
  --text-muted:  #5C4A66;
  --text-light:  #8A7496;
  --white:       #FFFFFF;
  --border:      #E8DDE8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lora', 'Times New Roman', serif;
  --font-ui:      'Inter', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 3px rgba(74,44,90,.08);
  --shadow-md:  0 4px 20px rgba(74,44,90,.10);
  --shadow-lg:  0 8px 40px rgba(74,44,90,.14);

  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
address { font-style: normal; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--plum);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 200;
  font-family: var(--font-ui);
  font-size: .875rem;
}
.skip-link:focus { top: 16px; }

/* ── Typography ───────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.text-center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--plum-dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: .9375rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-sm { padding: 10px 22px; font-size: .875rem; }
.btn-full { width: 100%; }

.btn-gold {
  background: var(--amber);
  color: var(--white);
  border: 2px solid var(--amber);
}
.btn-gold:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

/* ── Header ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253,249,243,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--plum);
  line-height: 1;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-line-one {
  font-family: var(--font-display);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--plum);
}
.logo-line-two {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--plum-dark);
  letter-spacing: -.01em;
}

/* Nav */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  font-family: var(--font-ui);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--amber);
  transition: width var(--transition);
}
.nav-menu a:hover { color: var(--plum); }
.nav-menu a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 50%, var(--plum-light) 100%);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image:
    radial-gradient(circle at 20% 80%, var(--amber) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--amber) 1px, transparent 1px);
  background-size: 60px 60px, 40px 40px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px 0 80px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--amber-light);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

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

/* Hero image */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 520px;
  width: 100%;
}
.hero-image-card img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

/* Floating cards */
.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-ui);
  font-size: .8125rem;
  font-weight: 500;
  color: var(--plum-dark);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}
.floating-card--1 {
  top: 12%;
  left: -24px;
  animation-delay: 0s;
}
.floating-card--2 {
  bottom: 28%;
  left: -32px;
  animation-delay: 1.3s;
}
.floating-card--3 {
  bottom: 8%;
  right: -16px;
  animation-delay: 2.6s;
}
.fc-icon {
  color: var(--amber);
  flex-shrink: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  pointer-events: none;
}

/* ── About ────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream);
}
.about-img-accent img {
  width: 300px;
  height: 340px;
  object-fit: cover;
  display: block;
}

.about-accent-bar {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--amber);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: .3;
}

.about-content p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-content p:first-of-type {
  font-size: 1.125rem;
  color: var(--text);
}

.about-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  margin-top: 36px;
}

.af-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text);
}
.af-icon {
  color: var(--amber);
  flex-shrink: 0;
}

/* ── Products ─────────────────────────────────────── */
.products {
  padding: 120px 0;
  background: var(--plum-faint);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pc-image {
  overflow: hidden;
  height: 200px;
}
.pc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .pc-image img {
  transform: scale(1.05);
}

.pc-content {
  padding: 24px 28px 28px;
}
.pc-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--plum-dark);
  margin-bottom: 8px;
}
.pc-content p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Bakery ───────────────────────────────────────── */
.bakery {
  padding: 120px 0;
  background: var(--cream);
}

.bakery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bakery-content p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.bakery-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.bi-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.bi-card--large img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}
.bi-card--small img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* ── Visit ────────────────────────────────────────── */
.visit {
  padding: 120px 0;
  background: var(--plum-faint);
}

.visit-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.visit-content {
  padding: 64px 56px;
}

.visit-address {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.va-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--text);
}
.va-line svg {
  color: var(--amber);
  flex-shrink: 0;
}
.va-line a {
  color: var(--plum);
  font-weight: 500;
  transition: color var(--transition);
}
.va-line a:hover { color: var(--amber); }

.visit-hours {
  margin-top: 36px;
}
.visit-hours h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--plum-dark);
  margin-bottom: 16px;
}
.visit-hours ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.visit-hours li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-ui);
  font-size: .9375rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.visit-hours li span:first-child {
  color: var(--text-muted);
  font-weight: 500;
}
.visit-hours li span:last-child {
  color: var(--text);
  font-weight: 600;
}

.visit-map {
  min-height: 480px;
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
}

/* ── Contact ──────────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 16px;
}
.contact-text a {
  color: var(--plum);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.contact-text a:hover {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-family: var(--font-ui);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(200,149,46,.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-success {
  display: none;
  text-align: center;
  font-family: var(--font-ui);
  font-size: .9375rem;
  color: var(--plum);
  font-weight: 500;
  padding: 16px;
  background: var(--plum-faint);
  border-radius: var(--radius-sm);
  margin-top: 8px;
}
.form-success.visible {
  display: block;
  animation: fadeIn .4s ease;
}

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

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  background: var(--plum-dark);
  color: rgba(255,255,255,.65);
  padding: 64px 0 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-brand .logo-mark {
  color: var(--amber-light);
  font-size: 2.5rem;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}
.footer-brand p {
  font-family: var(--font-ui);
  font-size: .875rem;
  line-height: 1.7;
}
.footer-brand a {
  color: var(--amber-light);
  transition: color var(--transition);
}
.footer-brand a:hover { color: var(--white); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.footer-links a {
  font-family: var(--font-ui);
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--amber-light); }

.footer-copy {
  font-family: var(--font-ui);
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .about-grid,
  .bakery-grid { gap: 48px; }
  .floating-card--1 { left: -8px; }
  .floating-card--2 { left: -16px; }
  .floating-card--3 { right: -8px; }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-image-card img { height: 480px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-accent { right: 0; }

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

  .bakery-grid { grid-template-columns: 1fr; }
  .bi-card--large img { height: 400px; }

  .visit-card { grid-template-columns: 1fr; }
  .visit-map { min-height: 320px; }
  .visit-map iframe { min-height: 320px; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253,249,243,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s ease;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: 16px 0;
  }
  .nav-menu li {
    width: 100%;
    text-align: center;
  }
  .nav-menu a {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
  }
  .nav-menu a::after { display: none; }
  .nav-menu .btn {
    margin: 8px auto;
  }

  .hero { min-height: auto; padding: 100px 0 80px; }
  .hero-headline { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .floating-card { display: none; }

  .about { padding: 80px 0; }
  .about-img-main img { height: 400px; }
  .about-img-accent { position: relative; bottom: auto; right: auto; margin-top: 16px; }
  .about-img-accent img { width: 100%; height: 260px; }
  .about-features { grid-template-columns: 1fr; }

  .products { padding: 80px 0; }
  .products-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .bakery { padding: 80px 0; }

  .visit { padding: 80px 0; }
  .visit-content { padding: 40px 28px; }

  .contact { padding: 80px 0; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; }
}
