/* =============================
   VELVET CRUMBS — SHARED STYLES
   ============================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --cream: #FAF6F0;
  --warm: #F5EDE0;
  --sand: #E8D5BE;
  --caramel: #ed6493;
  --brown: #7C4A2D;
  --espresso: #2C1810;
  --text: #3A2418;
  --muted: #3f2f26;
  --white: #FFFFFF;
  --green: #25D366;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 12px rgba(44, 24, 16, .07);
  --shadow-md: 0 6px 30px rgba(44, 24, 16, .11);
  --shadow-lg: 0 16px 60px rgba(44, 24, 16, .15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

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

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

/* ---- UTILITIES ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.container.xl {
  max-width: 1400px
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--caramel);
  background: rgba(200, 149, 106, .12);
  border: 1px solid rgba(200, 149, 106, .25);
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--caramel);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--espresso);
  border: 1.5px solid var(--espresso);
}

.btn-outline:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--cream);
  transform: translateY(-2px);
}

em {
  color: var(--caramel)
}

.btn-caramel {
  background: var(--caramel);
  color: var(--white);
}

.btn-caramel:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---- HEADER / NAV ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background .3s, box-shadow .3s;
}

.site-header.scrolled {
  background: rgba(250, 246, 240, .95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(44, 24, 16, .08);
}

.site-header:not(.scrolled) .nav-links>li>a {
  color: var(--cream)
}

.site-header:not(.scrolled) .nav-logo {
  color: var(--cream)
}

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

.nav-logo {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: .02em;
  transition: .4s ease-in-out;
}

.scrolled .nav-logo {
  font-size: 2rem;
  transition: .4s ease-in-out;
}

.nav-logo span {
  color: var(--caramel);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color .2s;
}

.nav-links a:not(.btn-primary)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--caramel);
  transition: width .25s ease;
}

.nav-links a:hover {
  color: var(--caramel);
}

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

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  min-width: 200px;
  border: 1px solid rgba(44, 24, 16, .06);
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 9px 16px;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  transition: background .15s;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
}

.dropdown-menu a:hover {
  background: var(--warm);
  color: var(--caramel);
}

.dropdown-menu a::after {
  display: none;
}

.nav-cta {
  margin-left: 8px;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: all .3s;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: url(images/hero-banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #0008;
  background-blend-mode: overlay;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(200, 149, 106, .18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(232, 213, 190, .5) 0%, transparent 60%);
}

/* Decorative circles */
.hero-decor {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 149, 106, .2);
}

.hero-decor-1 {
  width: 500px;
  height: 500px;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-decor-2 {
  width: 340px;
  height: 340px;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-decor-3 {
  width: 180px;
  height: 180px;
  right: 140px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  padding-top: 72px;
}

.hero-content .tag {
  box-shadow: 0px 0px 10px #0001;
  color: var(--cream)
}

.hero-content h1 {
  color: var(--cream);
  margin-bottom: 24px;
  font-weight: 300;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--cream);
  text-shadow: 0px 2px 10px #000
}

.hero-content .btn-outline {
  border-color: var(--cream);
  color: var(--espresso);
  background: var(--cream)
}

.hero-content .btn-outline:hover {
  border-color: var(--brown);
  color: var(--cream);
  background: var(--brown)
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 580px;
  color: var(--cream);
  font-weight: 500;
  text-shadow: 0px 2px 1px #000
}

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

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--caramel);
  z-index: 1;
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--caramel), transparent);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ---- CATEGORIES ---- */
.categories-section {
  background: var(--white);
}

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

.section-header h2 {
  color: var(--espresso);
  margin-bottom: 12px;
}

.section-header p {
  max-width: 580px;
  margin: 0 auto;
}

.category-card-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.categories-grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(200px, 1fr));
  grid-template-rows: repeat(2, minmax(300px, 400px));
  gap: 20px;
}

.category-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: var(--shadow-sm);
}

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

.category-card-img {
  width: 100%;
  height: 100%;
  background: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  transition: transform .4s ease;
}

.category-card:hover .category-card-img {
  transform: scale(1.04);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, .75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 16px;
}

.category-card-name {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}

.category-card-arrow {
  margin-top: 6px;
  font-size: 0.72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s;
}

.category-card:hover .category-card-arrow {
  gap: 10px;
  color: var(--sand);
}

/* ---- CUSTOM ORDERS ---- */
.custom-section {
  background: var(--espresso);
}

.custom-section .section-header h2 {
  color: var(--cream);
}

.custom-section .section-header p {
  color: rgba(250, 246, 240, .6);
}

.custom-section .tag {
  color: var(--sand);
  background: rgba(232, 213, 190, .1);
  border-color: rgba(232, 213, 190, .2);
}

.custom-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  overflow: hidden;
  margin-bottom: 56px;
}

.custom-item {
  background: var(--brown);
  padding: 36px 28px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
  grid-column: span 2;
}

.custom-item:nth-last-child(1),
.custom-item:nth-last-child(2) {
  grid-column: span 3
}

.custom-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--caramel);
  transition: height .3s ease;
}

.custom-item:hover {
  background: rgba(200, 149, 106, .12);
}

.custom-item:hover::before {
  height: 100%;
}

.custom-item-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.custom-item-icon svg {
  width: 80px;
  height: 80px;
  box-sizing: border-box;
  padding: 10px;
  background: rgba(200, 149, 106, .12);
  border-radius: 60px;
}

.custom-item-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.custom-item-text {
  font-size: 1rem;
  color: rgba(250, 246, 240, .55);
  line-height: 1.7;
}

.custom-cta {
  text-align: center;
}

.custom-cta p {
  color: rgba(250, 246, 240, .55);
  margin-bottom: 24px;
  font-size: 1rem;
}

/* ---- ABOUT ---- */
.about-section {
  background: var(--warm);
}

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

.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/6;
  background: var(--sand);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.about-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 149, 106, .2) 0%, transparent 60%);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--caramel);
  color: var(--white);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  text-align: center;
  gap: 10px;
}

.about-badge-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.65rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .85;
  margin-top: 2px;
  font-weight: 500;
}

.about-content h2 {
  color: var(--espresso);
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-value {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255, 255, 255, .6);
  border-radius: var(--radius-md);
  border: 1px solid rgba(200, 149, 106, .15);
}

.about-value-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-value-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--espresso);
  margin-bottom: 3px;
}

.about-value-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.about-value-icon svg {
  width: 50px;
  height: 50px;
  padding: 3px;
  background: #ed6493;
  border-radius: 60px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  align-self: center;
}

.contact-info h2 {
  color: var(--espresso);
  margin-bottom: 16px;
}

.contact-info>p {
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 149, 106, .12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 3px;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: var(--text);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

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

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

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--cream);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-md);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color .2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--caramel);
}

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

/* ---- FOOTER ---- */
.site-footer {
  background: var(--espresso);
  padding: 72px 0 32px;
}

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

.footer-brand .nav-logo {
  color: var(--cream);
  display: block;
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.footer-brand p {
  color: rgba(250, 246, 240, .5);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-col-title {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: rgba(250, 246, 240, .5);
  transition: color .2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(250, 246, 240, .35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(250, 246, 240, .35);
  transition: color .2s;
}

.footer-bottom-links a:hover {
  color: rgba(250, 246, 240, .7);
}

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  z-index: 9999;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  animation: wa-pulse 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .55);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, .65), 0 0 0 8px rgba(37, 211, 102, .08);
  }
}

/* ---- CATEGORY PAGE ---- */
.cat-hero {
  padding: 140px 0 64px;
  background: var(--warm);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(200, 149, 106, .2) 0%, transparent 70%);
}

.cat-hero h1 {
  color: var(--espresso);
  position: relative;
}

.cat-hero p {
  max-width: 520px;
  margin: 16px auto 0;
  position: relative;
}

.cat-hero-emoji {
  font-size: 4rem;
  margin-bottom: 16px;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.breadcrumb a {
  color: var(--caramel);
  transition: opacity .2s;
}

.breadcrumb a:hover {
  opacity: .7;
}

.breadcrumb-sep {
  opacity: .4;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}

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

.product-card-img {
  aspect-ratio: 4/3;
  background: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  transition: transform .4s;
}
.product-card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.product-card:hover .product-card-img {
  transform: scale(1.03);
}

.product-card-body {
  padding: 20px 22px;
}

.product-card-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 6px;
  line-height: 1.2;
}

.product-card-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--caramel);
  background: rgba(200, 149, 106, .1);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ---- LEGAL PAGES ---- */
.legal-hero {
  padding: 140px 0 56px;
  background: var(--warm);
  text-align: center;
}

.legal-hero h1 {
  color: var(--espresso);
}

.legal-hero p {
  color: var(--muted);
  margin-top: 12px;
}

.legal-body {
  padding: 72px 0;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--espresso);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--sand);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.legal-content ul {
  margin: 12px 0 16px 20px;
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .about-badge {
    right: 12px;
  }

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

@media (max-width: 680px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .about-values {
    grid-template-columns: 1fr;
  }

  .hero-decor-1,
  .hero-decor-2,
  .hero-decor-3 {
    display: none;
  }

  /* Mobile nav open state */
  .mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 72px;
    background: rgba(250, 246, 240, .97);
    backdrop-filter: blur(12px);
    padding: 40px 24px;
    gap: 24px;
    align-items: flex-start;
    z-index: 999;
  }

  .mobile-open .nav-links a {
    font-size: 1.2rem;
  }

  .mobile-open .nav-cta {
    display: block;
    margin-top: 8px;
  }

  .mobile-open .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    background: var(--warm);
    transform: none;
  }
}

</style>