:root {
  --pink: #E8345A;
  --pink-deep: #C72548;
  --copper: #C68A4A;
  --cream: #FBF5EE;
  --cream-2: #F4EADD;
  --ink: #2A1F1A;
  --muted: #6B5B52;
  --line: #E7DCCB;
  --shadow: 0 1px 2px rgba(42,31,26,.05), 0 8px 24px rgba(42,31,26,.08);
  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--pink-deep); text-decoration: none; }
a:hover { color: var(--pink); }

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

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; }
.eyebrow {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--pink-deep);
  font-weight: 600;
  margin-bottom: .8rem;
}
.script {
  font-family: "Caveat", cursive;
  color: var(--pink-deep);
  font-weight: 500;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 245, 238, .92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: 70px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Fraunces", serif; font-weight: 700; font-size: 1.35rem;
  color: var(--ink);
}
.brand .mark {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--pink); color: var(--cream);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(232,52,90,.12);
}
.brand .mark svg { width: 22px; height: 22px; }
.brand-name { letter-spacing: -0.01em; }
.nav { display: flex; gap: 26px; }
.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  padding: 6px 0;
}
.nav a:hover { color: var(--pink-deep); }
.nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--pink); border-radius: 2px;
}
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--cream);
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 600; font-size: .9rem;
}
.header-phone:hover { background: var(--pink-deep); color: white; }
.menu-btn {
  display: none;
  background: none; border: 0; padding: 8px; cursor: pointer;
}
.menu-btn svg { width: 26px; height: 26px; stroke: var(--ink); }

/* Hero */
.hero {
  position: relative;
  background: var(--ink);
  color: white;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("/samsdonuts/assets/img/hero-display.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,12,9,0) 35%, rgba(20,12,9,0.85) 100%),
    linear-gradient(90deg, rgba(20,12,9,0.7) 0%, rgba(20,12,9,0.15) 60%, rgba(20,12,9,0) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  padding: 110px 0 130px;
  max-width: 720px;
}
.hero h1 { color: white; }
.hero h1 .accent { color: #FFC2D1; font-style: italic; }
.hero .lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.86);
  margin-bottom: 26px;
  max-width: 560px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: .98rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--pink); color: white; }
.btn-primary:hover { background: var(--pink-deep); color: white; }
.btn-ghost { background: transparent; color: white; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.1); color: white; border-color: white; }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: #3a2b24; color: white; }

.hero-meta {
  position: absolute; z-index: 1; left: 0; right: 0; bottom: 0;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: rgba(20,12,9,.55);
  border-top: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,.92);
  font-size: .92rem;
}
.hero-meta .item { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 16px; height: 16px; opacity: .85; }

/* Sections */
section { padding: 80px 0; }
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* About */
.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center;
}
.about-grid p { color: var(--muted); margin-bottom: 1.1em; font-size: 1.05rem; }
.about-grid .since { font-size: 1.15rem; color: var(--ink); }
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.about-photo img { aspect-ratio: 1/1; object-fit: cover; }
.about-photo .badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--cream); color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .8rem; font-weight: 600;
  letter-spacing: .04em;
  box-shadow: var(--shadow);
}
.about-photo .badge::before {
  content: "●"; color: #2BB673; margin-right: 6px;
}

/* Menu / Made */
.made { background: var(--cream-2); }
.made-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 16px;
}
.made-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.made-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(232,52,90,.35);
}
.made-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(232,52,90,.1); color: var(--pink-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.made-card h3 { margin-bottom: 6px; }
.made-card p { color: var(--muted); font-size: .96rem; margin: 0; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.gallery-grid > * { border-radius: var(--radius); overflow: hidden; }
.gallery-grid > *:nth-child(1) { grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }

/* Visit */
.visit { background: var(--ink); color: var(--cream); }
.visit h2 { color: white; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}
.visit-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px;
}
.visit-card h3 { color: white; margin-bottom: 16px; }
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { padding: 10px 0; border-bottom: 1px dashed rgba(255,255,255,.12); display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,.85); }
.info-list li:last-child { border-bottom: 0; }
.info-list svg { flex-shrink: 0; width: 18px; height: 18px; color: #FFC2D1; margin-top: 2px; }
.info-list strong { color: white; font-weight: 600; }
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .today { color: white; font-weight: 600; position: relative; }
.hours-list .today::before {
  content: ""; position: absolute; left: -14px; top: 16px;
  width: 6px; height: 6px; border-radius: 50%; background: #2BB673;
  box-shadow: 0 0 0 4px rgba(43,182,115,.2);
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  min-height: 360px;
  background: rgba(255,255,255,.04);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* Footer */
.site-footer {
  background: #1a120f;
  color: rgba(255,255,255,.75);
  padding: 40px 0 30px;
  font-size: .92rem;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 18px;
}
.footer-inner .brand { color: white; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  color: white;
  transition: background-color .15s ease;
}
.socials a:hover { background: var(--pink); color: white; }
.socials svg { width: 18px; height: 18px; }
.copy { color: rgba(255,255,255,.5); font-size: .85rem; }

/* Decorative donut */
.donut-deco {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--pink);
  position: relative;
  flex-shrink: 0;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.05);
}
.donut-deco::before {
  content: ""; position: absolute; inset: 18px; border-radius: 50%;
  background: var(--cream);
}

/* Responsive */
@media (max-width: 880px) {
  .nav { display: none; }
  .menu-btn { display: inline-flex; }
  .hero-inner { padding: 90px 0 110px; }
  .about-grid, .visit-grid { grid-template-columns: 1fr; gap: 30px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .gallery-grid > *:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  section { padding: 60px 0; }
  .header-phone span { display: none; }
  .header-phone { padding: 9px 11px; }
}

/* Mobile menu drawer */
.nav.open {
  display: flex;
  position: fixed; left: 0; right: 0; top: 70px;
  background: var(--cream);
  flex-direction: column; gap: 0;
  padding: 12px 24px 18px;
  border-bottom: 1px solid var(--line);
}
.nav.open a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.nav.open a:last-child { border-bottom: 0; }
