/* ===========================
   SWEET BAKERY — style.css
   =========================== */

/* ---- CSS Variables ---- */
:root {
  --pink-50:  #fff0f5;
  --pink-100: #ffe0ec;
  --pink-200: #ffc2d9;
  --pink-300: #ff94bb;
  --pink-400: #f9638f;
  --pink-500: #e83d6e;
  --pink-600: #c8285a;
  --cream:    #fffaf7;
  --warm-100: #fdf3ec;
  --warm-200: #f7e0cc;
  --brown:    #5a3825;
  --text-dark:#2d1a10;
  --text-mid: #6b4a35;
  --text-light:#9e7a65;
  --white:    #ffffff;
  --shadow-sm: 0 2px 12px rgba(200, 40, 90, 0.08);
  --shadow-md: 0 8px 32px rgba(200, 40, 90, 0.12);
  --shadow-lg: 0 20px 60px rgba(200, 40, 90, 0.15);
  --radius:   1rem;
  --radius-lg: 2rem;
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

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

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}
em { font-style: italic; color: var(--pink-500); }

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-500);
  background: var(--pink-50);
  border: 1px solid var(--pink-200);
  border-radius: 100px;
  padding: 0.3rem 1rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--pink-500);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(232, 61, 110, 0.35);
}
.btn-primary:hover {
  background: var(--pink-600);
  box-shadow: 0 8px 28px rgba(232, 61, 110, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--pink-500);
  border-color: var(--pink-300);
}
.btn-outline:hover {
  background: var(--pink-50);
  border-color: var(--pink-500);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ---- Reveal animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(200, 40, 90, 0.1);
  padding: 0.7rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--text-dark);
  font-weight: 700;
}
.logo-icon { font-size: 1.5rem; }
.logo em { color: var(--pink-500); font-style: italic; }
.logo--light .logo-text { color: var(--white); }
.logo--light em { color: var(--pink-200); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--pink-400);
  border-radius: 2px;
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--pink-500); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--pink-500) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(232, 61, 110, 0.3);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s !important;
}
.nav-cta:hover {
  background: var(--pink-600) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232, 61, 110, 0.4) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger (mobile) */
.menu-toggle { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--pink-50) 0%, var(--cream) 55%, var(--warm-100) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

/* Decorative blobs */
.hero-bg-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.blob-1 {
  width: 600px; height: 600px;
  background: var(--pink-200);
  top: -200px; right: -150px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: var(--warm-200);
  bottom: -100px; left: -100px;
}
.blob-3 {
  width: 300px; height: 300px;
  background: var(--pink-100);
  top: 30%; left: 38%;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: var(--pink-500);
  margin-bottom: 1.2rem;
  animation: fadeDown 0.7s ease both;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--text-dark);
  margin-bottom: 1.2rem;
  animation: fadeDown 0.7s 0.1s ease both;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 440px;
  margin-bottom: 2rem;
  animation: fadeDown 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeDown 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeDown 0.7s 0.4s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.4rem; font-family: 'Playfair Display', serif; color: var(--text-dark); }
.stat span   { font-size: 0.8rem; color: var(--text-light); }
.stat-divider {
  width: 1px; height: 36px;
  background: var(--pink-200);
}

/* Hero image */
.hero-image-wrap {
  position: relative;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-image-bg {
  position: absolute;
  inset: -20px;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  background: linear-gradient(135deg, var(--pink-200), var(--warm-200));
  z-index: 0;
  animation: morph 8s ease-in-out infinite;
}
@keyframes morph {
  0%, 100% { border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%; }
  50%       { border-radius: 55% 45% 40% 60% / 60% 55% 45% 40%; }
}

.hero-img {
  position: relative;
  z-index: 1;
  border-radius: 30% 70% 60% 40% / 40% 50% 50% 60%;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
}
.hero-img:hover { transform: scale(1.02); }

.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-md);
  animation: float 3s ease-in-out infinite;
}
.badge-icon { font-size: 1.8rem; }
.hero-badge strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.hero-badge span   { font-size: 0.75rem; color: var(--text-light); }

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

.hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ===========================
   ABOUT
   =========================== */
.about {
  padding: 7rem 0;
  background: var(--white);
}

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

.about-images {
  position: relative;
  min-height: 480px;
}

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

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: 0;
  width: 55%;
  height: 240px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 5px solid var(--white);
  object-fit: cover;
}

.about-since {
  position: absolute;
  top: 1.5rem;
  right: 0.5rem;
  background: var(--pink-500);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.about-since strong { display: block; font-size: 0.7rem; letter-spacing: 0.12em; }
.about-since span   { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; }

.about-content p {
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.about-features {
  margin: 1.8rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
}
.about-features li i {
  color: var(--pink-500);
  font-size: 0.9rem;
  width: 16px;
}

/* ===========================
   PRODUCTS
   =========================== */
.products {
  padding: 7rem 0;
  background: var(--pink-50);
  position: relative;
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.featured-card {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--pink-200);
}
.featured-card:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.card-img-wrap img {
  transition: transform 0.5s ease;
}
.product-card:hover .card-img-wrap img {
  transform: scale(1.07);
}

.card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--pink-500);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

.card-body { padding: 1.5rem; }

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}
.card-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-400);
}
.card-rating { color: #f5a623; font-size: 0.82rem; }

.card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}
.card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.55;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}
.card-price small {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
}

.btn-add {
  background: var(--pink-50);
  color: var(--pink-500);
  border: 1.5px solid var(--pink-200);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-add:hover {
  background: var(--pink-500);
  color: var(--white);
  border-color: var(--pink-500);
  transform: scale(1.04);
}

/* ===========================
   REVIEWS
   =========================== */
.reviews {
  padding: 7rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.reviews-bg-blob {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--pink-100);
  filter: blur(100px);
  opacity: 0.5;
  top: -200px; right: -200px;
  pointer-events: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-100);
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.review-card--featured {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: var(--white);
  border: none;
}
.review-card--featured p,
.review-card--featured .reviewer strong { color: var(--white); }
.review-card--featured .reviewer span  { color: var(--pink-200); }
.review-card--featured .review-stars   { color: #fff; }

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

.review-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-card p::before { content: '"'; font-size: 1.4rem; }
.review-card p::after  { content: '"'; font-size: 1.4rem; }

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.reviewer img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink-200);
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.9rem; }
.reviewer span   { font-size: 0.78rem; color: var(--text-light); }

/* ===========================
   CONTACT
   =========================== */
.contact {
  padding: 7rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info p {
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-details i {
  color: var(--pink-500);
  font-size: 1rem;
  margin-top: 0.2rem;
  background: var(--pink-50);
  border: 1px solid var(--pink-200);
  border-radius: 8px;
  padding: 0.55rem;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-details strong { display: block; font-size: 0.85rem; color: var(--text-dark); }
.contact-details span   { font-size: 0.88rem; color: var(--text-light); }

/* Form */
.contact-form {
  background: var(--pink-50);
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--pink-200);
  border-radius: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--pink-300); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink-400);
  box-shadow: 0 0 0 3px rgba(232, 61, 110, 0.1);
}
.form-group textarea { resize: vertical; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--text-dark);
  color: var(--pink-100);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin: 1rem 0 1.5rem;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--pink-200);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.social-links a:hover {
  background: var(--pink-500);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-newsletter h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover {
  color: var(--pink-300);
  padding-left: 4px;
}

.footer-newsletter p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 100px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.12);
}
.newsletter-form input {
  flex: 1;
  padding: 0.65rem 1rem;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form button {
  background: var(--pink-500);
  color: var(--white);
  border: none;
  padding: 0.65rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--pink-400); }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero-container   { gap: 2.5rem; }
  .hero-img         { height: 400px; }
  .products-grid    { gap: 1.5rem; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand     { grid-column: span 2; }
}

@media (max-width: 768px) {
  /* Hamburger */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(280px, 80vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
    transition: right 0.35s ease;
    z-index: 999;
  }
  .menu-toggle:checked ~ .nav-links { right: 0; }
  .nav-links a { font-size: 1.1rem; }

  /* Hero */
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-subtitle { margin: 0 auto 2rem; }
  .hero-actions  { justify-content: center; }
  .hero-stats    { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-img      { height: 320px; }
  .hero-badge    { left: 50%; transform: translateX(-50%); bottom: -1rem; white-space: nowrap; }

  /* About */
  .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .about-images  { min-height: 360px; }
  .about-img-main { width: 100%; height: 300px; }
  .about-img-accent { width: 50%; height: 180px; bottom: -1.5rem; }
  .about-features { grid-template-columns: 1fr; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .featured-card { transform: none; }
  .featured-card:hover { transform: translateY(-8px); }

  /* Reviews */
  .reviews-grid  { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  /* Contact */
  .contact-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .form-row      { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-brand  { grid-column: span 1; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.65rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 1.5rem; }
}