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

:root {
  --amber:    #c8732a;
  --amber-dk: #a05a1c;
  --cream:    #fdf6ed;
  --warm-bg:  #faf3e8;
  --dark:     #1e1208;
  --text:     #3d2b0f;
  --muted:    #7a6045;
  --border:   #e8d9c0;
  --white:    #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }

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

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--white); }
.logo-sub   { font-size: .7rem; color: var(--amber); letter-spacing: .08em; text-transform: uppercase; }

.nav nav { display: flex; gap: 28px; }
.nav nav a {
  color: #ccc;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: color .2s;
}
.nav nav a:hover { color: var(--amber); }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #2a1506 0%, #4a2010 50%, #1e1208 100%);
  padding: 100px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(200,115,42,.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; max-width: 680px; margin: 0 auto; }

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.15rem;
  color: #d4b896;
  margin-bottom: 36px;
}

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

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: all .2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
}
.btn-primary:hover { background: var(--amber-dk); transform: translateY(-1px); }

.btn-outline {
  border: 2px solid rgba(255,255,255,.4);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }

.btn-sm {
  padding: 8px 18px;
  font-size: .85rem;
  background: var(--amber);
  color: var(--white);
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
}
.btn-sm:hover { background: var(--amber-dk); }

/* ── Hours Banner ── */
.hours-banner {
  background: var(--amber);
  padding: 28px 24px;
}

.hours-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.hours-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
  gap: 4px;
}

.hours-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}

.hours-time {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.hours-phone { text-decoration: underline; text-underline-offset: 3px; }

.divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.3);
}

/* ── Shop / Categories ── */
.shop {
  background: var(--cream);
  padding: 80px 24px;
  text-align: center;
}

.shop h2 { font-size: 2.2rem; margin-bottom: 12px; }
.section-sub { color: var(--muted); font-size: 1.05rem; margin-bottom: 48px; }

.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  text-align: left;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}

.category-card:hover {
  box-shadow: 0 8px 32px rgba(200,115,42,.12);
  transform: translateY(-3px);
}

.category-icon { font-size: 2rem; margin-bottom: 12px; }
.category-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.category-card p  { color: var(--muted); font-size: .93rem; line-height: 1.6; }

/* ── Why Us ── */
.why-us {
  background: var(--warm-bg);
  padding: 80px 24px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.why-text h2 { font-size: 2rem; margin-bottom: 16px; }
.why-text p  { color: var(--muted); margin-bottom: 24px; line-height: 1.7; }

.perks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.perks li { font-weight: 500; color: var(--text); font-size: .95rem; }

.why-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.store-badge {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 6px solid var(--amber);
  box-shadow: 0 8px 40px rgba(200,115,42,.25);
}

.badge-top    { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--amber); }
.badge-name   { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--white); text-align: center; }
.badge-bottom { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: #888; text-align: center; padding: 0 20px; }

/* ── Contact ── */
.contact {
  background: var(--cream);
  padding: 80px 24px;
  text-align: center;
}

.contact h2 { font-size: 2.2rem; margin-bottom: 12px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  text-align: left;
  margin-top: 48px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 32px; }

.info-block h4 {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.info-block p  { color: var(--text); line-height: 1.7; }
.info-block a  { color: var(--amber); }
.info-block a:hover { text-decoration: underline; }

.hours-table { border-collapse: collapse; width: 100%; }
.hours-table td { padding: 4px 12px 4px 0; font-size: .93rem; color: var(--text); }
.hours-table td:first-child { color: var(--muted); width: 100px; }

.apple-map-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
}
.apple-map-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  transform: translateY(-2px);
}

.apple-map-visual {
  height: 280px;
  background: #e8f0e8;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #dde8d8 0%, #c8d8c0 100%);
}

/* Fake street grid */
.map-line {
  position: absolute;
  background: rgba(255,255,255,.6);
}
.map-line.h { left: 0; right: 0; height: 2px; }
.map-line.v { top: 0; bottom: 0; width: 2px; }

.apple-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 3rem;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.2));
  z-index: 2;
}

.apple-map-footer {
  background: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
}

.apple-map-info { display: flex; flex-direction: column; gap: 2px; }
.apple-map-name { font-weight: 700; font-size: .95rem; color: #111; }
.apple-map-addr { font-size: .82rem; color: var(--muted); }

.apple-map-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #0071e3;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: #aaa;
  text-align: center;
  padding: 40px 24px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
}

.footer p { font-size: .88rem; margin-bottom: 6px; }
.footer a { color: var(--amber); }
.footer-legal { margin-top: 16px; font-size: .78rem; color: #666; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .why-grid    { grid-template-columns: 1fr; gap: 40px; }
  .why-visual  { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap    { height: 280px; }
  .divider     { display: none; }
  .hours-inner { gap: 16px; }
  .hours-block { padding: 8px 16px; }
  .nav nav     { gap: 16px; }
}

@media (max-width: 480px) {
  .hero { padding: 70px 20px 60px; }
  .nav-inner { padding: 0 16px; }
  .categories { grid-template-columns: 1fr; }
}
