/* ===================================
   TEREZINHA OLIVEIRA – CABELEIREIRA
   Design: Rose Gold & Warm Elegance
   =================================== */

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

:root {
  --rose:        #c8856a;
  --rose-dark:   #a85f47;
  --rose-light:  #f0cabb;
  --gold:        #d4a05a;
  --cream:       #fdf6f0;
  --cream-dark:  #f5ebe0;
  --brown-dark:  #2a1810;
  --brown-mid:   #5c3d2e;
  --text:        #3d2314;
  --text-light:  #7a5c4e;
  --white:       #ffffff;
  --shadow-sm:   0 2px 12px rgba(200,133,106,.15);
  --shadow-md:   0 8px 32px rgba(200,133,106,.22);
  --shadow-lg:   0 20px 60px rgba(200,133,106,.3);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --transition:  0.3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* --------- SCROLLBAR --------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 10px; }

/* --------- HELPERS --------- */
.section-container { max-width: 1200px; margin: 0 auto; padding: 96px 24px; }

.section-header { text-align: center; margin-bottom: 60px; }
/* .section-header.light — inherits base styles */

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --------- BUTTONS --------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(200,133,106,.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200,133,106,.5);
  background: linear-gradient(135deg, #d4957c 0%, var(--rose) 100%);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: white;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--rose);
  border: 2px solid var(--rose-light);
}
.btn-ghost:hover {
  background: var(--rose-light);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: .85rem; }

.btn-wpp {
  background: #25D366;
  color: white;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
}
.btn-wpp:hover { background: #20b858; transform: translateY(-2px); }

.full-width { width: 100%; }

/* --------- NAVBAR --------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(253,246,240,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(200,133,106,.12);
  padding: 12px 0;
}

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

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.navbar.scrolled .nav-logo { color: var(--brown-dark); }

.logo-icon { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  position: relative;
  transition: color var(--transition);
}

.navbar.scrolled .nav-link { color: var(--text-light); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-link:hover { color: white; }
.navbar.scrolled .nav-link:hover { color: var(--rose); }

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .nav-hamburger span { background: var(--brown-mid); }

/* --------- HERO --------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(42,24,16,.72) 0%,
    rgba(92,61,46,.58) 50%,
    rgba(200,133,106,.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 24px;
  max-width: 780px;
  animation: fadeUp .9s ease both;
}

.hero-eyebrow {
  font-size: .8rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0,0,0,.3);
}

.hero-title em {
  font-style: italic;
  color: var(--rose-light);
}

.hero-subtitle {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.82);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.6;
}

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

.hero-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  padding: 10px 22px;
  border-radius: 40px;
  font-size: .95rem;
  color: white;
  transition: var(--transition);
}

.hero-contact-pill:hover { background: rgba(255,255,255,.2); }
.hero-contact-pill a { color: white; font-weight: 600; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  animation: scrollBounce 1.8s ease-in-out infinite;
  opacity: .6;
}

/* --------- SERVICES – Editorial Layout --------- */
.services { background: var(--cream); overflow: hidden; }

.services-editorial {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 52px;
}

.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  overflow: hidden;
}

.svc-block.reverse { direction: rtl; }
.svc-block.reverse > * { direction: ltr; }

.svc-block-img {
  position: relative;
  overflow: hidden;
}

.svc-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s ease;
}

.svc-block:hover .svc-block-img img { transform: scale(1.04); }

.svc-block-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(42,24,16,.7);
  backdrop-filter: blur(8px);
  color: var(--rose-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}

.svc-block-list {
  background: white;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.svc-block:nth-child(even) .svc-block-list { background: var(--cream); }
.svc-block:nth-child(even).reverse .svc-block-list { background: white; }

.svc-block-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--brown-dark);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}

.svc-block-desc {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 360px;
}

.svc-price-list { list-style: none; }

.svc-price-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(200,133,106,.15);
}

.svc-price-list li:last-child { border-bottom: none; }

.svc-name {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  flex-shrink: 0;
}

.svc-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(200,133,106,.3);
  margin-bottom: 3px;
  min-width: 20px;
}

.svc-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rose);
  flex-shrink: 0;
}

.services-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------- GALLERY – Mosaic --------- */
.gallery { background: var(--brown-dark); padding: 0; }
.gallery .section-container { padding: 96px 24px; }
.gallery .section-title { color: white; }
.gallery .section-eyebrow { color: var(--rose-light); }
.gallery .section-desc { color: rgba(255,255,255,.65); }

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
}

.gm-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.gm-item.gm-tall {
  grid-row: span 2;
}

.gm-item.gm-wide {
  grid-column: span 2;
}

.gm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}

.gm-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15,8,5,.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gm-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: white;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* --------- BOOKING – Info Schedule --------- */
.booking { background: var(--cream-dark); }

.booking-info-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Schedule panel */
.booking-schedule {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.schedule-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--brown-dark);
  margin-bottom: 24px;
}

.schedule-days {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.sched-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 8px;
  border-radius: var(--radius-md);
  text-align: center;
}

.sched-day.open {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  border: 1.5px solid rgba(200,133,106,.2);
}

.sched-day.open.saturday {
  background: linear-gradient(135deg, var(--rose-light) 0%, #f5d5c5 100%);
  border-color: rgba(200,133,106,.4);
}

.sched-day.closed {
  background: #f7f7f7;
  border: 1.5px solid #eee;
  opacity: .55;
}

.sched-day-name {
  font-size: .8rem;
  font-weight: 700;
  color: var(--brown-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.sched-day.closed .sched-day-name { color: #aaa; }

.sched-day-hours {
  font-size: .78rem;
  color: var(--rose);
  font-weight: 600;
}

.sched-day.closed .sched-day-hours { color: #bbb; }

.schedule-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: .84rem;
  color: var(--text-light);
  line-height: 1.6;
}

.schedule-note span { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* CTA Panel */
.booking-cta-panel {
  background: linear-gradient(160deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: white;
  box-shadow: var(--shadow-md);
}

.booking-cta-eyebrow {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 8px;
}

.booking-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 28px;
}

.booking-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.booking-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(200,133,106,.3);
  border: 1.5px solid var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: var(--rose-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.booking-steps li div strong {
  display: block;
  font-size: .95rem;
  color: white;
  margin-bottom: 3px;
}

.booking-steps li div p {
  font-size: .83rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}

.booking-pix-note {
  margin-top: 16px;
  text-align: center;
  font-size: .83rem;
  color: rgba(255,255,255,.55);
}

.booking-pix-note strong { color: rgba(255,255,255,.8); }

/* --------- SHOP --------- */
.shop { background: var(--cream); }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.shop-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(200,133,106,.1);
}

.shop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.shop-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.shop-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

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

.shop-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: white;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .06em;
}

.shop-badge.new { background: linear-gradient(135deg, var(--gold), #b8832e); }

.shop-content { padding: 24px; }

.shop-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.shop-content p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.shop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.shop-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rose);
}

.shop-note {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--brown-dark), var(--brown-mid));
  color: white;
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  font-size: .9rem;
  line-height: 1.6;
}

.shop-note span { font-size: 1.5rem; flex-shrink: 0; }

/* --------- CONTACT --------- */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.contact-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(200,133,106,.15);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.contact-link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--rose);
  transition: color var(--transition);
}

.contact-link:hover { color: var(--rose-dark); }

.hours-list { text-align: left; margin-top: 8px; }

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(200,133,106,.12);
  color: var(--text);
  gap: 12px;
}

.hours-list li:last-child { border: none; }

.hours-list li.closed { color: #bbb; }
.hours-list li span:last-child { font-weight: 600; }

.contact-cta-banner {
  background: linear-gradient(135deg, var(--rose-light) 0%, #f5d5c5 50%, var(--cream-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-banner-content {
  text-align: center;
}

.cta-banner-content p {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--brown-dark);
  margin-bottom: 20px;
}

/* --------- FOOTER --------- */
.footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,.7);
  padding: 48px 24px;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-brand .logo-icon { font-size: 1.5rem; }
.footer-brand strong { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: white; }
.footer-tagline { font-size: .85rem; color: var(--rose-light); }

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--rose-light); }

.footer-copy { font-size: .8rem; color: rgba(255,255,255,.35); }

/* --------- WPP FLOAT --------- */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: var(--transition);
  animation: pulse-wpp 3s ease-in-out infinite;
}

.wpp-float svg { width: 28px; height: 28px; }
.wpp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.5); }

/* --------- ANIMATIONS --------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50%       { transform: translateY(10px); opacity: 1; }
}

@keyframes pulse-wpp {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,.7); }
}

/* fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* --------- RESPONSIVE --------- */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); padding: 20px 24px; gap: 12px; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-link { color: var(--text) !important; font-size: 1rem; }
  .navbar .nav-logo { color: white; }
  .navbar.scrolled .nav-logo { color: var(--brown-dark); }
  .nav-hamburger { display: flex; }

  /* Services editorial → stack vertically */
  .svc-block { grid-template-columns: 1fr; min-height: unset; }
  .svc-block.reverse { direction: ltr; }
  .svc-block-img { height: 280px; }
  .svc-block-list { padding: 36px 28px; }

  /* Gallery mosaic → 2 cols */
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .gm-item.gm-wide { grid-column: span 1; }

  /* Booking → stack */
  .booking-info-layout { grid-template-columns: 1fr; }
  .schedule-days { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 600px) {
  .section-container { padding: 64px 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .services-cta { flex-direction: column; align-items: center; }

  /* Services editorial → compact */
  .svc-block-img { height: 220px; }
  .svc-block-list { padding: 28px 20px; }
  .svc-block-title { font-size: 1.3rem; }

  /* Gallery mosaic → single col */
  .gallery-mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(6, 200px); }
  .gm-item.gm-tall { grid-row: span 1; }

  /* Schedule → 2 per row */
  .schedule-days { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .sched-day { padding: 12px 4px; }
  .sched-day-name { font-size: .7rem; }
  .sched-day-hours { font-size: .68rem; }

  .shop-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cta-banner { padding: 28px 20px; }
  .footer-links { gap: 16px; }
}

