/* ============================================================
   Beach Meadows Cemetery Society — Main Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --green:      #3b5e45;
  --green-dark: #2a4432;
  --brown:      #8b7355;
  --brown-light:#b89a72;
  --cream:      #f9f7f4;
  --cream-dark: #ede9e2;
  --text:       #2c2c2c;
  --text-light: #5a5a5a;
  --border:     #d6cfc5;
  --white:      #ffffff;
  --shadow:     0 4px 20px rgba(0,0,0,0.10);
  --radius:     8px;
  --transition: 0.3s ease;
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans:  'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

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

a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brown); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--green-dark);
  line-height: 1.3;
}

ul { list-style: none; }

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 48px;
}

.divider {
  width: 60px; height: 3px;
  background: var(--brown);
  margin: 16px auto 32px;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green);
}

/* ---------- Fade-in Animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 24px;
}

/* Branding */
.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-brand img {
  height: 54px;
  width: auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  white-space: nowrap;
}
.brand-tagline {
  font-size: 0.72rem;
  color: var(--brown);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Nav */
#main-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
  flex-wrap: nowrap;
}

#main-nav ul li a {
  display: block;
  padding: 8px 11px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  border-radius: 5px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

#main-nav ul li a:hover,
#main-nav ul li a.active {
  background: var(--green);
  color: var(--white);
}

/* Hamburger */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
#hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
#hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/cametery (1).jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,52,35,0.82) 0%,
    rgba(30,52,35,0.55) 60%,
    rgba(0,0,0,0.30) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 40px 0;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-title span { color: var(--brown-light); }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.8;
}

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

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.5);
  margin-top: 4px;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   INNER PAGE HERO + SHARED INNER COMPONENTS
   ============================================================ */
.inner-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 110px 0 70px;
  background: var(--green-dark);
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,52,35,0.82) 0%,
    rgba(30,52,35,0.6) 55%,
    rgba(0,0,0,0.28) 100%
  );
}

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

.inner-hero-content h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.5rem);
  color: var(--white);
  margin-bottom: 14px;
}

.inner-hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  max-width: 640px;
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-light);
}

.breadcrumb a { color: var(--brown-light); }

.content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.content-card,
.info-card,
.quote-card,
.detail-card,
.timeline-card,
.form-card,
.contact-card,
.season-card,
.news-listing-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.content-card,
.quote-card,
.detail-card,
.timeline-card,
.form-card,
.contact-card,
.season-card,
.news-listing-card {
  padding: 30px;
}

.content-card p,
.quote-card p,
.detail-card p,
.timeline-card p,
.form-card p,
.contact-card p,
.season-card p,
.news-listing-card p {
  color: var(--text-light);
}

.content-card p:last-child,
.quote-card p:last-child,
.detail-card p:last-child,
.timeline-card p:last-child,
.form-card p:last-child,
.contact-card p:last-child,
.season-card p:last-child,
.news-listing-card p:last-child {
  margin-bottom: 0;
}

.side-stack {
  display: grid;
  gap: 24px;
}

.info-card {
  overflow: hidden;
}

.info-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.info-card-body {
  padding: 24px;
}

.cards-grid,
.services-grid,
.season-grid,
.records-grid,
.quotes-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

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

.cards-grid .detail-card,
.services-grid .detail-card,
.records-grid .detail-card,
.quotes-grid .quote-card,
.contact-grid .contact-card {
  height: 100%;
}

.detail-card h3,
.quote-card h3,
.contact-card h3,
.form-card h3,
.season-card h3,
.timeline-card h3,
.content-card h2 {
  margin-bottom: 12px;
}

.service-icon,
.detail-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 22px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 18px;
  width: 2px;
  background: linear-gradient(var(--green), var(--brown));
}

.timeline-item {
  position: relative;
  padding-left: 56px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brown);
  border: 3px solid var(--green-dark);
}

.timeline-year {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
}

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

.heritage-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  filter: sepia(0.3);
  box-shadow: var(--shadow);
}

.list-clean {
  padding-left: 20px;
}

.list-clean li {
  margin-bottom: 12px;
  color: var(--text-light);
}

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

.news-list {
  display: grid;
  gap: 24px;
}

.news-listing-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  padding: 0;
  overflow: hidden;
}

.news-listing-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.news-listing-body {
  padding: 28px 28px 28px 0;
}

.news-listing-date {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
}

.form-grid {
  display: grid;
  gap: 18px;
}

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

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-dark);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  color: var(--text);
  background: #fffdfa;
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(59,94,69,0.12);
}

.status-box {
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.status-box.success {
  background: #edf6ef;
  border: 1px solid #9fc1a7;
  color: #29523a;
}

.status-box.error {
  background: #fbefef;
  border: 1px solid #d8a5a5;
  color: #7b2f2f;
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* ============================================================
   WELCOME STRIP
   ============================================================ */
.welcome-strip {
  background: var(--green);
  padding: 28px 0;
}
.welcome-strip .container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.welcome-strip .ws-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.welcome-strip p {
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
  line-height: 1.6;
}
.welcome-strip strong {
  color: var(--white);
  font-size: 1.05rem;
}

/* ============================================================
   MISSION & VISION
   ============================================================ */
.mv-section { background: var(--white); }

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

.mv-card {
  padding: 40px 36px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  border-radius: 12px 0 0 12px;
}
.mv-card.mission { background: var(--cream); }
.mv-card.mission::before { background: var(--green); }
.mv-card.vision { background: #f0ece4; }
.mv-card.vision::before { background: var(--brown); }

.mv-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.mv-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--green-dark);
}
.mv-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================================
   QUICK LINKS
   ============================================================ */
.quicklinks { background: var(--cream-dark); }

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

.ql-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.ql-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}
.ql-card .ql-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 4px;
  transition: background var(--transition);
}
.ql-card:hover .ql-icon { background: var(--green); }
.ql-card h4 { font-size: 1rem; color: var(--green-dark); }
.ql-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }
.ql-card .ql-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.ql-card:hover .ql-link { gap: 8px; }

/* ============================================================
   PHOTO GALLERY
   ============================================================ */
.gallery-section { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,52,35,0);
  transition: background var(--transition);
  border-radius: 10px;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(30,52,35,0.25);
}

/* ============================================================
   NEWS / EVENTS
   ============================================================ */
.news-section { background: var(--cream); }

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

.news-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.news-card:hover { transform: translateY(-4px); }

.news-card-img {
  height: 200px;
  overflow: hidden;
}
.news-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.06); }

.news-card-body { padding: 24px; }
.news-date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 8px;
}
.news-card-body h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--green-dark);
}
.news-card-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }
.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
}

/* ============================================================
   VALUES STRIP
   ============================================================ */
.values-strip { background: var(--green-dark); padding: 64px 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}
.value-item { color: rgba(255,255,255,0.85); }
.value-item .v-icon { font-size: 2rem; margin-bottom: 12px; }
.value-item h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 6px; }
.value-item p { font-size: 0.8rem; line-height: 1.6; }

/* ============================================================
   CONTACT STRIP
   ============================================================ */
.contact-strip { background: var(--cream-dark); }

.contact-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.cs-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cs-icon {
  font-size: 1.8rem;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}
.cs-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 4px;
}
.cs-text span, .cs-text a {
  font-size: 0.95rem;
  color: var(--text);
}
.cs-text a:hover { color: var(--green); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #1a2e20;
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand-row img {
  height: 44px;
  width: auto;
  filter: brightness(1.2);
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.75; }

.footer-col h5 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brown);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}
.footer-col ul li a:hover {
  color: var(--brown-light);
  padding-left: 6px;
}
.footer-col address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 2;
  color: rgba(255,255,255,0.7);
}
.footer-col address a { color: rgba(255,255,255,0.7); }
.footer-col address a:hover { color: var(--brown-light); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  #main-nav ul li a { padding: 8px 8px; font-size: 0.78rem; }
}

@media (max-width: 980px) {
  /* Nav collapses */
  #main-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 999;
  }
  #main-nav.open { display: block; }
  #main-nav ul { flex-direction: column; padding: 16px 24px 24px; gap: 4px; }
  #main-nav ul li a { padding: 10px 14px; border-radius: 6px; font-size: 0.9rem; }
  #hamburger { display: flex; }
  #site-header { position: relative; }

  .mv-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .ql-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid,
  .services-grid,
  .season-grid,
  .contact-grid,
  .heritage-gallery { grid-template-columns: 1fr; }
  .news-listing-card { grid-template-columns: 1fr; }
  .news-listing-body { padding: 0 24px 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-strip-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .inner-hero { min-height: 48vh; padding: 96px 0 54px; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 92vh; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .ql-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .news-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .brand-text { display: none; }
}

/* Print */
@media print {
  #site-header, #site-footer, .hero-scroll, .hero-buttons { display: none; }
  body { background: white; color: black; }
}
