/* ═══════════════════════════════════════════════════════
   Maple & Grain Bakery – Global Stylesheet
   shovelwarestudios.com
   ═══════════════════════════════════════════════════════ */

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

:root {
  --bg-primary:    #faf8f5;
  --bg-secondary:  #f3ede4;
  --bg-card:       #ffffff;
  --bg-card-hover: #fdf8f0;
  --border-subtle: rgba(120,80,20,.08);
  --text-primary:  #1e1610;
  --text-secondary:#5a4a38;
  --text-muted:    #9e8e7e;
  --amber:         #b86e00;
  --amber-light:   #d4840a;
  --amber-dark:    #7a4800;
  --amber-glow:    rgba(184,110,0,.16);
  --amber-vivid:   #f59e0b;
  --navy:          #1a1208;
  --cream:         #fde8c0;
  --gradient:      linear-gradient(135deg, var(--amber), var(--amber-vivid));
  --gradient-text: linear-gradient(135deg, var(--amber), var(--amber-vivid));
  --radius:        10px;
  --radius-lg:     16px;
  --shadow:        0 4px 24px rgba(100,60,0,.10);
  --shadow-glow:   0 0 30px var(--amber-glow), 0 0 60px rgba(245,158,11,.10);
  --transition:    .3s cubic-bezier(.4,0,.2,1);
  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-height:    72px;
  --max-width:     1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a  { color: var(--amber-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber); }

img { max-width: 100%; display: block; }
ul  { list-style: none; }

::selection {
  background: var(--amber);
  color: #fff;
}

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--amber);
  margin-bottom: .5rem;
}

.section-title {
  margin-bottom: .75rem;
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 640px;
  font-size: 1.05rem;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 90px 0;
  position: relative;
}

/* ── Top Banner ── */
.top-banner {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  text-align: center;
  padding: 10px 16px;
  font-size: .9rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.top-banner a {
  color: var(--cream);
  font-weight: 700;
}

.top-banner a:hover {
  color: #fff;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(250,248,245,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(100,60,0,.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.3px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo:hover { color: var(--navy); }

.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  color: #fff;
}

.nav-logo img.logo-icon {
  background: none;
  border-radius: 0;
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
}

/* ── Hero Full Logo ── */
.hero-logo {
  width: 560px;
  max-width: 90%;
  margin-bottom: 20px;
  display: block;
}

/* ── About Full Logo ── */
.about-logo-full {
  max-width: 400px;
  width: 100%;
  display: block;
}

/* ── Anchor scroll offset (fixed navbar) ── */
section[id] {
  scroll-margin-top: calc(var(--nav-height) + 20px);
}

/* ── Clickable card links ── */
a.card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-size: .88rem;
  font-weight: 500;
  position: relative;
  transition: color var(--transition);
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--amber);
}

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

.nav-cta {
  padding: 8px 20px !important;
  background: var(--gradient) !important;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: .85rem !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
  color: #fff !important;
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, #fef3dc 0%, var(--bg-primary) 60%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,.12) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: float 10s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,110,0,.10) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: float 10s ease-in-out 5s infinite reverse;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-content h1 {
  margin-bottom: 1.25rem;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 560px;
}

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

.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(184,110,0,.08);
  border: 1px solid rgba(184,110,0,.18);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 1.5rem;
  letter-spacing: .5px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: var(--font);
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 16px var(--amber-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--amber);
  border: 2px solid rgba(184,110,0,.25);
}

.btn-secondary:hover {
  background: rgba(184,110,0,.06);
  border-color: var(--amber);
  color: var(--amber);
}

.btn-white {
  background: #fff;
  color: var(--amber);
  box-shadow: var(--shadow);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(100,60,0,.15);
  color: var(--amber);
}

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  border-color: rgba(184,110,0,.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 52px; height: 52px;
  background: rgba(184,110,0,.08);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--text-secondary);
  font-size: .95rem;
}

/* ── Grid Layouts ── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

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

/* ── Offerings Section ── */
.offerings { background: var(--bg-secondary); }

.offerings .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.offerings .section-subtitle {
  margin: 0 auto;
}

/* ── Stats ── */
.stats {
  background: var(--navy);
  padding: 60px 0;
  color: #fff;
}

.stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--cream);
}

.stat-label {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  margin-top: 4px;
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-item span:first-child {
  font-size: 1.2rem;
}

/* ── CTA Section ── */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.cta-box {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  max-width: 700px;
  margin: 0 auto;
}

.cta-box h2 { margin-bottom: 16px; }
.cta-box p  { color: var(--text-secondary); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }

.coming-soon-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}

.coming-soon-card h2 { margin-bottom: 14px; }
.coming-soon-card p  { color: var(--text-secondary); max-width: 560px; margin: 0 auto; }

/* ── Page Hero ── */
.page-hero {
  padding: calc(var(--nav-height) + 70px) 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, #fef3dc 0%, var(--bg-primary) 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,110,0,.08) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.page-hero h1,
.page-hero p {
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1rem auto 0;
}

/* ── About Page ── */
.about-story {
  background: var(--bg-secondary);
}

.about-story .grid-2 {
  align-items: center;
  gap: 60px;
}

.about-story-text h2 { margin-bottom: 20px; }
.about-story-text p  { color: var(--text-secondary); margin-bottom: 16px; }

.about-image-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  height: 360px;
  display: grid;
  place-items: center;
  font-size: 5rem;
  opacity: .25;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: .04;
}

.values-grid .card-icon { margin-bottom: 16px; }

/* ── Contact Page ── */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-glow);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235a4a38' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ── Service / Feature List ── */
.service-list {
  list-style: none;
}

.service-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: .95rem;
}

.service-list li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
  font-size: 1rem;
}

/* ── Quick Quote / Dark Card ── */
.quick-quote {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
}

.quick-quote h3 {
  color: #fff;
  margin-bottom: 6px;
}

.quick-quote p {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  margin-bottom: 20px;
}

/* ── Map Placeholder ── */
.map-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  gap: 12px;
}

.map-placeholder .map-icon {
  font-size: 3rem;
  opacity: .3;
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  padding: 60px 0 30px;
  color: rgba(255,255,255,.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-about .nav-logo {
  color: #fff;
  margin-bottom: 12px;
}

.footer-about p {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  max-width: 300px;
}

.footer h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}

.footer ul li {
  margin-bottom: 10px;
}

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

.footer ul a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,.35);
  font-size: .85rem;
}

/* ── Legal Pages ── */
.legal-content {
  padding: calc(var(--nav-height) + 60px) 0 100px;
}

.legal-content .container {
  max-width: 800px;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.legal-content .updated {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
}

/* ── 404 ── */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-height);
}

.page-404 h1 {
  font-size: 8rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-404 p {
  color: var(--text-secondary);
  margin: 12px 0 32px;
  font-size: 1.1rem;
}

/* ── Section Header helper ── */
.section-header {
  margin-bottom: 40px;
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  transition: all var(--transition);
  background: var(--bg-secondary);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,18,8,.75));
  color: #fff;
  padding: 28px 16px 16px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .3px;
}

/* ── Testimonials ── */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 4rem;
  color: var(--amber);
  opacity: .12;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: .95rem;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px; height: 42px;
  background: var(--gradient);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-primary);
}

.testimonial-role {
  color: var(--text-muted);
  font-size: .8rem;
  margin-top: 2px;
}

.stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

/* ── Rating Summary ── */
.rating-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  margin-bottom: -45px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
}

.rating-score {
  text-align: center;
  flex-shrink: 0;
}

.rating-number {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.rating-score .rating-stars {
  color: #f59e0b;
  font-size: 1.3rem;
  letter-spacing: 3px;
  margin-bottom: 6px;
}

.rating-count {
  display: block;
  font-size: .8rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
}

.rating-bar-label {
  width: 46px;
  color: var(--text-muted);
  flex-shrink: 0;
  text-align: right;
}

.rating-bar-track {
  flex: 1;
  height: 8px;
  background: var(--bg-secondary);
  border-radius: 999px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 999px;
  transition: width .8s cubic-bezier(.4,0,.2,1);
}

.rating-bar-pct {
  width: 30px;
  color: var(--text-muted);
  font-size: .8rem;
  flex-shrink: 0;
}

.rating-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-tag {
  background: rgba(184,110,0,.07);
  border: 1px solid rgba(184,110,0,.14);
  color: var(--amber-dark);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ── Animations ── */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .rating-summary { grid-template-columns: auto 1fr; grid-template-rows: auto auto; }
  .rating-tags { flex-direction: row; flex-wrap: wrap; grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(250,248,245,.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 28px 24px;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 12px 24px rgba(0,0,0,.06);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero-content h1 { font-size: 2rem; }

  .about-story .grid-2 { gap: 32px; }

  .cta-box { padding: 36px 24px; }

  .coming-soon-card { padding: 36px 24px; }

  .trust-items { gap: 20px; }

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

  .rating-summary {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 28px;
  }

  .rating-tags { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .btn { justify-content: center; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats .grid-3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .rating-summary { grid-template-columns: 1fr; padding: 28px 24px; }
  .rating-score { display: flex; align-items: center; gap: 16px; text-align: left; }
}
