/* ============================================================
   Danny And The Robin — Main Stylesheet
   Warm 1970s-inspired handmade brand
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --rust:          #B83216;
  --rust-dark:     #8C260F;
  --rust-light:    #CC3D1A;
  --orange-accent: #D4531A;
  --terracotta:    #C45C2A;
  --bg-cream:      #F5EDD8;
  --bg-beige:      #EDE0C4;
  --bg-light:      #FBF5E8;
  --cream-card:    #FAF2E2;
  --brown-dark:    #2A1F14;
  --brown-mid:     #5C3D2E;
  --brown-light:   #8B6654;
  --yellow-muted:  #D4A843;
  --olive:         #6B7A3A;
  --text-dark:     #1E1510;
  --text-mid:      #4A3728;
  --text-light:    #7A6252;
  --border-warm:   #D9C8B0;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --shadow-sm:     0 2px 8px rgba(42,31,20,0.10);
  --shadow-md:     0 4px 16px rgba(42,31,20,0.14);
  --shadow-lg:     0 8px 32px rgba(42,31,20,0.16);
  --nav-h:         72px;
  --transition:    0.22s ease;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ---- Typography ---- */
h1, h2, h3 {
  font-family: 'Paytone One', sans-serif;
  line-height: 1.2;
  color: var(--brown-dark);
}

/* ---- Layout helpers ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 80px 0;
}

.bg-beige {
  background-color: var(--bg-beige);
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 10px;
}

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

.section-label.text-center {
  display: block;
}

.section-heading {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--brown-dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-xl);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background-color: var(--rust);
  color: #fff;
  border-color: var(--rust-dark);
}
.btn-primary:hover { background-color: var(--rust-dark); }

.btn-outline {
  background-color: transparent;
  color: var(--rust);
  border-color: var(--rust);
}
.btn-outline:hover {
  background-color: var(--rust);
  color: #fff;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  border-color: #1EBF5A;
}
.btn-whatsapp:hover { background-color: #1EBF5A; }

.btn-etsy {
  background-color: #F1641E;
  color: #fff;
  border-color: #D4541A;
}
.btn-etsy:hover { background-color: #D4541A; }

.btn-cream {
  background-color: var(--bg-cream);
  color: var(--rust);
  border-color: var(--bg-cream);
  font-size: 1.05rem;
  padding: 15px 32px;
}
.btn-cream:hover {
  background-color: #fff;
  border-color: #fff;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-cream);
  border-bottom: 2px solid var(--border-warm);
  box-shadow: 0 2px 12px rgba(42,31,20,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--nav-h);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 16px;
  flex: 1;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-mid);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover, .nav-link:focus-visible {
  color: var(--rust);
  background-color: rgba(184,50,22,0.08);
}

.nav-etsy {
  margin-left: auto;
  padding: 9px 18px;
  font-size: 0.88rem;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 2px solid var(--border-warm);
  border-radius: var(--radius-sm);
  margin-left: auto;
  padding: 8px;
  transition: border-color var(--transition);
}

.nav-hamburger:hover {
  border-color: var(--rust);
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background-color: var(--brown-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(42, 22, 8, 0.75) 0%,
    rgba(42, 22, 8, 0.55) 45%,
    rgba(42, 22, 8, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 60px 24px 60px;
  margin-left: max(24px, calc((100vw - 1200px) / 2));
}

/* Glow wrapper — radial gradient sits behind the logo only */
.hero-logo-link {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-logo-link::before {
  content: '';
  position: absolute;
  inset: -28% -22%;          /* slightly larger than the logo */
  border-radius: 50%;
  /* pale warm cream fading to nothing — no visible edge */
  background: radial-gradient(
    ellipse at center,
    rgba(250, 240, 220, 0.48) 0%,
    rgba(245, 225, 195, 0.22) 40%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: 280px;
  height: auto;
  display: block;
  /* soft warm shadow on the logo artwork itself */
  filter: drop-shadow(0 2px 14px rgba(0,0,0,0.22))
          drop-shadow(0 1px 4px rgba(42,20,8,0.18));
  image-rendering: -webkit-optimize-contrast;
}

.hero-heading {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  line-height: 1.15;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255,255,255,0.92);
  max-width: 500px;
  margin-bottom: 32px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

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

.hero-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color var(--transition);
}

.hero-contact-link:hover {
  color: #fff;
}

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
.highlights {
  background-color: var(--brown-dark);
  padding: 28px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.highlight-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: rgba(184,50,22,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-muted);
}

.highlight-icon svg {
  width: 20px;
  height: 20px;
}

.highlight-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bg-cream);
  letter-spacing: 0.02em;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 3/4;
}

.about-image-deco {
  position: absolute;
  inset: -14px;
  border: 3px solid var(--rust);
  border-radius: calc(var(--radius-lg) + 10px);
  opacity: 0.25;
  z-index: -1;
}

.about-content .section-label {
  margin-bottom: 8px;
}

.about-text {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-content .btn {
  margin-top: 8px;
}

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

.service-card {
  background-color: var(--cream-card);
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(184,50,22,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rust);
  margin-bottom: 16px;
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-title {
  font-family: 'Paytone One', sans-serif;
  font-size: 1.05rem;
  color: var(--brown-dark);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 12px;
}

.service-list {
  font-size: 0.88rem;
  color: var(--text-light);
  padding-left: 0;
}

.service-list li {
  padding: 2px 0 2px 16px;
  position: relative;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--rust);
  border-radius: 50%;
}

.service-price {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--rust);
  margin-top: 8px;
}

.service-price-note {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  display: block;
  width: 100%;
  break-inside: avoid;
  margin-bottom: 16px;
  border: none;
  background: none;
  padding: 0;
  cursor: zoom-in;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.32s ease;
}

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

/* ============================================================
   ETSY CTA
   ============================================================ */
.etsy-cta {
  background-color: var(--rust);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.etsy-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  text-align: center;
}

.etsy-flower {
  flex-shrink: 0;
  opacity: 0.4;
}

.etsy-flower-right {
  transform: scaleX(-1);
}

.etsy-cta-content {
  flex: 1;
  max-width: 580px;
}

.etsy-cta-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
  margin-bottom: 14px;
}

.etsy-cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ============================================================
   REVIEWS CAROUSEL
   ============================================================ */

/* CSS variable so JS and CSS stay in sync */
:root { --c-gap: 16px; }

.reviews-carousel {
  position: relative;
  user-select: none;
}

.carousel-track-outer {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  align-items: stretch;   /* equal-height cards per visible group */
  gap: var(--c-gap);      /* CSS gap — JS reads this value too */
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track { transition: none !important; }
}

/* ---- Review Card ---- */
.review-card {
  flex-shrink: 0;
  /* width set by JS; fallback keeps layout sane if JS is slow */
  min-width: 260px;
  background-color: var(--cream-card);
  border: 1.5px solid var(--border-warm);
  border-radius: 22px;
  padding: 28px 26px 24px;
  box-shadow: 0 2px 12px rgba(42,31,20,0.09);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow var(--transition);
  position: relative;
}

/* decorative quotation mark */
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--rust);
  opacity: 0.12;
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}

.review-card:hover {
  box-shadow: 0 4px 20px rgba(42,31,20,0.14);
}

/* ---- Stars ---- */
.review-stars {
  color: var(--rust);
  font-size: 1.15rem;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 14px;
}

/* ---- Body ---- */
.review-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.review-text {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin: 0;
}

.review-toggle {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--rust);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.review-toggle:hover  { color: var(--rust-dark); }

.review-toggle:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---- Footer ---- */
.review-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-warm);
}

.review-byline {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brown-dark);
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-light);
}

.review-source {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--rust);
  background: rgba(184,50,22,0.08);
  border: 1px solid rgba(184,50,22,0.22);
  border-radius: 20px;
  padding: 4px 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---- Controls row ---- */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--rust);
  background: var(--cream-card);
  color: var(--rust);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
}

.carousel-btn:hover:not(:disabled) {
  background: var(--rust);
  color: #fff;
  box-shadow: 0 4px 12px rgba(184,50,22,0.35);
  transform: scale(1.08);
}

.carousel-btn:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 3px;
}

.carousel-btn:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  transform: none;
}

/* ---- Dots ---- */
.carousel-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.carousel-dot {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border-warm);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.carousel-dot:hover {
  background: var(--rust-light);
  transform: scale(1.2);
}

.carousel-dot.is-active {
  background: var(--rust);
  transform: scale(1.35);
}

.carousel-dot:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}

/* ---- Mobile card padding ---- */
@media (max-width: 639px) {
  .reviews-carousel { padding: 0 4px; }
  .review-card { padding: 24px 20px 20px; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--cream-card);
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-md);
  padding: 20px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  color: var(--text-dark);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--rust);
}

.contact-card-location {
  cursor: default;
}

.contact-card-location:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
  border-color: var(--border-warm);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: rgba(184,50,22,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rust);
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-card-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-card-label {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.contact-card-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brown-dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-callout {
  text-align: center;
  background-color: var(--cream-card);
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
}

.contact-callout p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.contact-callout-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--brown-dark);
  color: var(--bg-cream);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,237,216,0.12);
}

.footer-logo-wrap {
  display: inline-block;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  margin-bottom: 16px;
}

.footer-logo {
  display: block;
  width: 200px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .footer-logo-wrap {
    display: block;
    text-align: center;
    padding: 10px 12px;
  }
  .footer-logo {
    width: 170px;
    margin: 0 auto;
  }
}

.footer-tagline {
  font-style: italic;
  color: rgba(245,237,216,0.7);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer-location {
  font-size: 0.85rem;
  color: rgba(245,237,216,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col-title {
  font-family: 'Paytone One', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow-muted);
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-size: 0.9rem;
  color: rgba(245,237,216,0.75);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--bg-cream);
}

.footer-link-icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 24px;
  font-size: 0.82rem;
  color: rgba(245,237,216,0.45);
}

/* ============================================================
   MOBILE CONTACT BAR
   ============================================================ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background-color: var(--brown-dark);
  border-top: 2px solid var(--rust);
  height: 64px;
}

.mobile-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 4px;
  height: 100%;
  color: var(--bg-cream);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background var(--transition);
  border: none;
  background: none;
  font-family: 'Nunito', sans-serif;
}

.mobile-bar-btn svg {
  flex-shrink: 0;
}

.mobile-bar-btn:hover, .mobile-bar-btn:focus-visible {
  background-color: rgba(184,50,22,0.25);
}

.mobile-bar-whatsapp:hover, .mobile-bar-whatsapp:focus-visible {
  background-color: rgba(37,211,102,0.2);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(26,16,8,0.92);
  backdrop-filter: blur(4px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 900px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lightbox-img-wrap {
  max-height: calc(90vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: calc(90vh - 80px);
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
}

.lightbox-caption {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-align: center;
  max-width: 500px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background-color: rgba(245,237,216,0.12);
  border: 2px solid rgba(245,237,216,0.25);
  border-radius: 50%;
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: rgba(184,50,22,0.6);
  transform: scale(1.05);
}

.lightbox-close {
  top: -52px;
  right: 0;
}

.lightbox-prev {
  left: -68px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox-next {
  right: -68px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.05);
}

/* ============================================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .about-inner {
    gap: 40px;
  }

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

  .gallery-grid {
    columns: 2;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .hero-logo { width: 230px; } /* tablet: scale down slightly from 280px */

  .lightbox-prev { left: -56px; }
  .lightbox-next { right: -56px; }
}

/* ============================================================
   RESPONSIVE — Large Mobile (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .section-pad {
    padding: 60px 0;
  }

  /* Nav */
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background-color: var(--bg-cream);
    border-bottom: 2px solid var(--border-warm);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 16px;
    box-shadow: 0 8px 24px rgba(42,31,20,0.12);
    margin-left: 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-link {
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 0;
  }

  .nav-link:hover {
    background-color: rgba(184,50,22,0.08);
  }

  .nav-etsy {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: auto;
  }

  .hero-img {
    object-position: 60% center;
  }

  .hero-content {
    padding: 48px 20px 80px;
    margin-left: 0;
    max-width: 100%;
  }

  .hero-logo {
    width: 200px;   /* mobile: noticeably larger than the old 140px */
  }

  .hero-buttons {
    gap: 10px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  /* Highlights */
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* About */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image-wrap {
    width: 100%;
    overflow: visible;   /* ensure the deco border isn't clipped */
  }

  .about-img {
    width: 100%;
    max-width: 100%;
    height: auto;        /* let the image determine its own height */
    aspect-ratio: unset; /* remove the 4/3 crop that cut off the photo */
    object-fit: contain; /* show the full image, no cropping */
    object-position: top center;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Reviews — lock all typography so every card is identical on mobile */
  .review-card {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  .review-stars {
    font-size: 1.1rem !important;
    letter-spacing: 2px;
  }

  .review-text {
    font-size: 0.93rem !important;
    line-height: 1.75 !important;
  }

  .review-name {
    font-size: 0.9rem !important;
    font-weight: 700;
  }

  .review-date {
    font-size: 0.78rem !important;
  }

  .review-toggle {
    font-size: 0.85rem !important;
  }

  /* Gallery — 1 column, properly centred */
  .gallery-grid {
    columns: 1;
    column-gap: 0;
    width: 100%;
  }

  .gallery-item {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  /* Etsy CTA */
  .etsy-flower {
    display: none;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-callout-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-callout-btns .btn {
    justify-content: center;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    grid-column: auto;
  }

  /* Mobile bar */
  .mobile-bar {
    display: flex;
  }

  body {
    padding-bottom: 64px;
  }

  /* Lightbox adjustments */
  .lightbox-prev {
    left: 8px;
    bottom: -60px;
    top: auto;
    transform: none;
  }
  .lightbox-prev:hover {
    transform: scale(1.05);
  }
  .lightbox-next {
    right: 8px;
    bottom: -60px;
    top: auto;
    transform: none;
  }
  .lightbox-next:hover {
    transform: scale(1.05);
  }
  .lightbox-close {
    top: -52px;
  }
  .lightbox-content {
    max-width: 95vw;
  }
}

/* ============================================================
   RESPONSIVE — Small Mobile (≤430px)
   ============================================================ */
@media (max-width: 430px) {
  .gallery-grid {
    columns: 2;
    column-gap: 10px;
  }

  .gallery-item {
    margin-bottom: 10px;
  }

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

  .highlight-text {
    font-size: 0.8rem;
  }

  .hero-contact-row {
    flex-direction: column;
    gap: 8px;
  }
}

/* ============================================================
   RESPONSIVE — Extra Small (≤360px)
   ============================================================ */
@media (max-width: 360px) {
  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 40px 16px 80px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    justify-content: center;
  }
}
