/* ============================================================
   BE FLOURISHED — Florist Website
   Color palette from business card: dark moody background,
   rose-gold/copper accents, warm cream text
   ============================================================ */

:root {
  --bg:        #0f0808;
  --bg2:       #1a0f0f;
  --bg3:       #221414;
  --gold:      #c9956a;
  --gold-lt:   #e0b48a;
  --gold-dk:   #9e6a42;
  --cream:     #f5ede4;
  --cream-dk:  #d4c5b8;
  --white:     #ffffff;
  --border:    rgba(201,149,106,0.25);
  --radius:    4px;
  --transition: 0.35s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--cream);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

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

/* ── Typography helpers ── */
.section-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
}

.section-title em {
  font-style: italic;
  color: var(--gold-lt);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--gold);
  color: var(--bg);
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-full { width: 100%; text-align: center; }

/* ============================================================
   SEASONAL HOLIDAY BANNER
   ============================================================ */
.seasonal-banner {
  position: fixed;
  top: -70px;
  left: 0; right: 0;
  z-index: 110;
  height: 54px;
  background: linear-gradient(135deg, #5c1a28 0%, #7d2638 50%, #5c1a28 100%);
  border-bottom: 1px solid rgba(201,149,106,0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: top 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.seasonal-banner.show { top: 0; }

/* When banner is visible, push nav down */
.has-banner .nav { top: 54px; }

.banner-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  overflow: hidden;
}

.banner-bloom {
  color: var(--gold-lt);
  font-size: 1rem;
  flex-shrink: 0;
  animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.2); opacity: 0.8; }
}

.banner-text {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow: hidden;
  white-space: nowrap;
}

.banner-occasion {
  font-family: 'Playfair Display', serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--cream);
}

.banner-tagline {
  font-size: 0.75rem;
  color: var(--cream-dk);
  white-space: nowrap;
}

.banner-countdown {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-lt);
  background: rgba(201,149,106,0.15);
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(201,149,106,0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.banner-cta {
  display: inline-block;
  padding: 0.3rem 1.1rem;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.banner-cta:hover { background: var(--gold-lt); }

.banner-dismiss {
  background: none;
  border: none;
  color: var(--cream-dk);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 0 0 1rem;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s;
}
.banner-dismiss:hover { color: var(--cream); }

@media (max-width: 600px) {
  .banner-tagline { display: none; }
  .banner-text { gap: 0; }
  .seasonal-banner { padding: 0 4%; gap: 0.5rem; }
  .banner-inner { gap: 0.6rem; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5%;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(10,5,5,0.95);
  backdrop-filter: blur(12px);
  padding: 0.9rem 5%;
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-lt);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dk);
  transition: color var(--transition);
}

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

.nav-cta {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.5rem 1.4rem;
  transition: background var(--transition), color var(--transition);
}

.nav-cta:hover { background: var(--gold); color: var(--bg); }

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s;
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul { list-style: none; text-align: center; }

.mobile-menu ul li { margin-bottom: 1.8rem; }

.mobile-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--cream);
  transition: color var(--transition);
}

.mobile-link:hover { color: var(--gold-lt); }

.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--cream-dk);
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(80,20,10,0.7) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(60,15,10,0.5) 0%, transparent 55%),
    url('https://images.unsplash.com/photo-1487530811015-780780169993?w=1800&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,5,5,0.55) 0%,
    rgba(10,5,5,0.2) 40%,
    rgba(10,5,5,0.75) 100%
  );
}

/* Decorative petals */
.hero-petals { position: absolute; inset: 0; pointer-events: none; }

.petal {
  position: absolute;
  border-radius: 50% 0;
  opacity: 0.12;
  background: var(--gold);
  animation: floatPetal 14s ease-in-out infinite alternate;
}

.p1 { width: 60px; height: 60px; top: 12%; left: 8%; animation-delay: 0s; }
.p2 { width: 90px; height: 90px; top: 60%; left: 3%; animation-delay: -3s; }
.p3 { width: 45px; height: 45px; top: 25%; right: 10%; animation-delay: -5s; }
.p4 { width: 70px; height: 70px; top: 70%; right: 6%; animation-delay: -8s; }
.p5 { width: 50px; height: 50px; top: 45%; left: 50%; animation-delay: -2s; }

@keyframes floatPetal {
  0%   { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(20px, -30px) rotate(45deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 700px;
}

.hero-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.55s forwards;
}

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

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  color: var(--cream-dk);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.05s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  background: var(--gold-dk);
  padding: 0.9rem 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  font-weight: 400;
  padding: 0 1rem;
}

.marquee-dot { color: rgba(10,5,5,0.5) !important; font-size: 0.55rem !important; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 7rem 8%;
  background: var(--bg2);
}

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

.about-img-frame {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-img-frame img { transition: transform 0.8s ease; }

.about-img-frame:hover img { transform: scale(1.04); }

.about-img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 1px solid var(--border);
  z-index: -1;
}

.about-badge {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 100px;
  height: 100px;
  background: var(--gold-dk);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.badge-num {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dk);
}

.badge-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

.about-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--cream-dk);
  margin-top: 1.5rem;
}


/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 7rem 8%;
  background: var(--bg);
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--cream-dk);
  margin-top: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}

.service-card {
  background: var(--bg2);
  padding: 3rem 2.5rem;
  transition: background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover { background: var(--bg3); }

.featured-card {
  background: var(--bg3);
  border-top: 2px solid var(--gold);
}

.service-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.85rem;
}

.service-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--cream-dk);
  margin-bottom: 1.5rem;
}

.service-link {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--transition), letter-spacing var(--transition);
}

.service-link:hover { color: var(--gold-lt); letter-spacing: 0.3em; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 7rem 8%;
  background: var(--bg2);
}

.gallery-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  transition: transform 0.7s ease;
}

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

.gi-large {
  grid-row: 1 / 3;
}

.gi-wide {
  grid-column: 2 / 4;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,5,5,0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-overlay span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.gallery-cta-text {
  text-align: center;
  margin-top: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cream-dk);
  font-style: italic;
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding: 7rem 8%;
  background: var(--bg2);
}

.contact-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--cream-dk);
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cream-dk);
  transition: color var(--transition);
}

.contact-value:hover { color: var(--gold-lt); }

/* ── Form ── */
.contact-form, .form-success {
  background: var(--bg3);
  padding: 3rem;
  border: 1px solid var(--border);
}

.form-success { display: none; text-align: center; }

.form-success.show { display: block; }

.success-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.form-success p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cream-dk);
  line-height: 1.75;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  border-radius: 0;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9956a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option { background: var(--bg2); }

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

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--cream-dk); opacity: 0.5; }

.form-group textarea { resize: vertical; }

.form-note {
  margin-top: 1rem;
  font-size: 0.72rem;
  text-align: center;
  color: var(--cream-dk);
  opacity: 0.6;
}

.form-error {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  text-align: center;
  color: #e07070;
  min-height: 1.2em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding: 5rem 8% 4rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-lt);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dk);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dk);
  transition: border-color var(--transition), color var(--transition);
}

.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-links h4,
.footer-contact h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

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

.footer-links li { margin-bottom: 0.75rem; }

.footer-links a,
.footer-contact p,
.footer-contact a {
  font-size: 0.85rem;
  color: var(--cream-dk);
  transition: color var(--transition);
  line-height: 1.8;
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--gold-lt); }

.footer-bottom {
  padding: 1.5rem 8%;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--cream-dk);
  opacity: 0.6;
}

/* ============================================================
   SCROLL ANIMATIONS (intersection observer driven)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about-image-col { max-width: 480px; margin: 0 auto; }

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

  .gallery-grid {
    grid-template-rows: 220px 220px;
  }

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

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

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

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .services-grid {
    grid-template-columns: 1fr;
    background: none;
    gap: 1.5rem;
  }

  .service-card { border: 1px solid var(--border); }
  .featured-card { border-top: 2px solid var(--gold); }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 200px);
  }

  .gi-large { grid-row: unset; }
  .gi-wide  { grid-column: unset; }

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

  .contact-form, .form-success { padding: 2rem 1.5rem; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 8% 3rem;
  }

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

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

@media (max-width: 480px) {
  .about { padding: 5rem 6%; }
  .services { padding: 5rem 6%; }
  .gallery { padding: 5rem 6%; }
  .testimonials { padding: 5rem 6%; }
  .contact { padding: 5rem 6%; }

.gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 220px);
  }

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