/* ============================================================
   CLOVER & STEM — Global Stylesheet
   Brand Colors: Brown #684420 | Cream #fef9e1
   ============================================================ */

/* ── Google Fonts ── */
@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=DM+Sans:wght@300;400;500&display=swap');

/* ── Adelia Display Font (local) ── */
@font-face {
  font-family: 'Adelia';
  src: url('../adelia_3/adelia.ttf') format('truetype'),
       url('../adelia_3/adelia alternate.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── Custom Properties ── */
:root {
  --cream:        #fef9e1;
  --cream-dark:   #f5edcc;
  --brown:        #684420;
  --brown-dark:   #4a2f15;
  --brown-light:  #b8895a;
  --brown-pale:   #ede0c8;
  --green:        #6b7c5a;
  --green-light:  #9aad88;
  --white:        #ffffff;
  --text-dark:    #2c1a0a;
  --text-mid:     #684420;
  --text-light:   #9a7a55;

  --font-display: 'Adelia', cursive;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-width:    1200px;
  --nav-height:   88px;
  --radius:       3px;
  --transition:   all 0.3s ease;
  --shadow:       0 2px 20px rgba(104, 68, 32, 0.10);
  --shadow-hover: 0 6px 32px rgba(104, 68, 32, 0.18);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

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

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
  font-size: 1rem;
  color: var(--text-dark);
  max-width: 65ch;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 12px;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 300;
  max-width: 55ch;
}

/* ── Decorative Divider ── */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--brown-pale);
}

.divider span {
  font-size: 1.1rem;
  color: var(--brown-light);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 96px 32px;
}

.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--pale  { background: var(--cream-dark); }
.section--brown { background: var(--brown); color: var(--cream); }
.section--brown h2,
.section--brown h3,
.section--brown .section-title { color: var(--cream); }
.section--brown .section-label { color: var(--brown-pale); }
.section--brown p { color: rgba(254, 249, 225, 0.85); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brown);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--brown-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

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

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(254, 249, 225, 0.6);
}
.btn-outline-cream:hover {
  background: rgba(254, 249, 225, 0.15);
  border-color: var(--cream);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--cream);
  border-bottom: 1px solid var(--brown-pale);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.site-nav.scrolled {
  box-shadow: 0 2px 24px rgba(104, 68, 32, 0.12);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brown);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brown);
}

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

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

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--brown);
  transition: var(--transition);
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--brown-pale);
  padding: 24px 32px 32px;
  z-index: 99;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-hover);
}

.nav-drawer a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--brown-pale);
  transition: color 0.2s;
}

.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--brown); }

.nav-drawer.open { display: flex; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(92vh - var(--nav-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1490750967868-88df5691cc5a?w=1600&q=80&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  width: 100%;
}

.hero-text {}

.hero-text .section-label {
  font-size: 0.75rem;
  margin-bottom: 64px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6.5vw, 5.5rem);
  color: var(--brown);
  line-height: 1.45;
  margin-bottom: 48px;
}

.hero-subheadline {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 28px;
}

.hero-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 40px;
  max-width: 50ch;
}

.hero-image-block {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}

.hero-img-frame img,
.hero-img-frame .img-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border: 1px solid var(--brown-pale);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 160px;
}

.hero-badge .badge-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--brown);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.hero-badge .badge-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ============================================================
   MARQUEE / RIBBON
   ============================================================ */
.ribbon {
  background: var(--brown);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ribbon-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
  gap: 0;
}

.ribbon-track span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0 32px;
}

.ribbon-track span.dot {
  padding: 0;
  color: var(--brown-light);
  font-size: 0.5rem;
}

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

/* ============================================================
   INTRO / ABOUT SNIPPET
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-image {
  position: relative;
}

.intro-img-stack {
  position: relative;
  width: 100%;
}

.intro-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}

.intro-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 55%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-hover);
}

.intro-img-main img,
.intro-img-main .img-ph,
.intro-img-accent img,
.intro-img-accent .img-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-text { padding-left: 16px; }

.intro-text .section-label { margin-bottom: 16px; }

.intro-text h2 {
  margin-bottom: 20px;
}

.intro-text p {
  line-height: 1.85;
  margin-bottom: 16px;
  color: var(--text-dark);
}

/* ============================================================
   OFFER CARDS
   ============================================================ */
.offer-card {
  background: var(--white);
  border: 1px solid var(--brown-pale);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

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

.offer-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.offer-card-img img,
.offer-card-img .img-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.offer-card:hover .offer-card-img img,
.offer-card:hover .offer-card-img .img-ph {
  transform: scale(1.04);
}

.offer-card-body {
  padding: 28px 28px 32px;
}

.offer-card-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.offer-card-body h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.offer-card-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 20px;
  max-width: none;
}

.offer-card-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.offer-card-link:hover { gap: 10px; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: steps;
}

.step {
  text-align: center;
  position: relative;
}

.step::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -16px;
  width: 32px;
  height: 1px;
  background: var(--brown-pale);
}

.step:last-child::after { display: none; }

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--brown-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brown);
  background: var(--white);
}

.step h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--brown);
}

.step p {
  font-size: 0.9rem;
  color: var(--text-light);
  max-width: none;
  line-height: 1.6;
}

/* ============================================================
   FEATURE / PILLARS
   ============================================================ */
.pillar {
  text-align: center;
  padding: 40px 24px;
}

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

.pillar h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--brown);
}

.pillar p {
  font-size: 0.92rem;
  color: var(--text-light);
  max-width: none;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--brown-pale);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--brown-pale);
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
  padding-top: 32px;
  max-width: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--brown-pale);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown);
  display: block;
}

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

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--brown);
  padding: 96px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1487530811015-780572df01f3?w=1200&q=60&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: var(--cream);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(254,249,225,0.80);
  font-size: 1.05rem;
  margin: 0 auto 40px;
  max-width: 48ch;
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  background: var(--cream-dark);
  padding: 96px 32px;
  text-align: center;
  border-bottom: 1px solid var(--brown-pale);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1200&q=60&fit=crop');
  background-size: cover;
  background-position: center top;
  opacity: 0.06;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero .section-label {
  margin-bottom: 24px;
  display: block;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  color: var(--brown);
  line-height: 1.6;
  margin-top: 8px;
  margin-bottom: 56px;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 52ch;
}

/* ── Botanical divider in page hero ── */
.page-hero-botanical {
  position: relative;
  height: 94px;
  margin: -44px auto 0;
  overflow: visible;
}

.botanical-rotated {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 94px;
  height: auto;
  transform: translate(-50%, -50%) rotate(-90deg);
  mix-blend-mode: multiply;
  opacity: 0.75;
}

/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */
.img-ph {
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--brown-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 200px;
}

.img-ph span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-light);
  opacity: 0.7;
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--brown-pale);
  border-radius: 40px;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--cream);
}

.gallery-masonry {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}

.gallery-item img,
.gallery-item .img-ph {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(104, 68, 32, 0.55);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: opacity 0.3s;
}

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

.gallery-item-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ============================================================
   CONTACT / FORMS
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.contact-detail-icon {
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}

.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.contact-detail-text a:hover { color: var(--brown); }

.form-card {
  background: var(--white);
  border: 1px solid var(--brown-pale);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
}

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

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

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  border: 1px solid var(--brown-pale);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brown);
  background: var(--white);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23684420' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 16px;
  max-width: none;
}

/* ============================================================
   SERVICE DETAIL CARDS
   ============================================================ */
.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--brown-pale);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}

.service-card.reverse { direction: rtl; }
.service-card.reverse > * { direction: ltr; }

.service-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card-image img,
.service-card-image .img-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-card-image img,
.service-card:hover .service-card-image .img-ph {
  transform: scale(1.03);
}

.service-card-body {
  padding: 48px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--cream-dark);
  border: 1px solid var(--brown-pale);
  border-radius: 40px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 16px;
}

.service-card-body h2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.service-card-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
  max-width: none;
}

.service-features {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.service-feature::before {
  content: '✦';
  font-size: 0.5rem;
  color: var(--brown-light);
  flex-shrink: 0;
}

/* ============================================================
   TEAM / ABOUT
   ============================================================ */
.team-card {
  text-align: center;
}

.team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--brown-pale);
  box-shadow: var(--shadow);
}

.team-photo img,
.team-photo .img-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 12px;
  display: block;
}

.team-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  max-width: 34ch;
  margin: 0 auto;
}

/* ── Values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--brown-pale);
  border: 2px solid var(--brown-pale);
  border-radius: var(--radius);
  overflow: hidden;
}

.value-item {
  background: var(--white);
  padding: 40px 36px;
}

.value-item h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 0.92rem;
  color: var(--text-light);
  max-width: none;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--brown-dark);
  color: rgba(254,249,225,0.80);
  padding: 72px 32px 32px;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(254,249,225,0.12);
  margin-bottom: 32px;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) sepia(1) saturate(0.1) brightness(1.5);
  opacity: 0.85;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(254,249,225,0.65);
  max-width: 28ch;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(254,249,225,0.45);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(254,249,225,0.75);
  transition: color 0.2s;
}

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

.footer-col address {
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(254,249,225,0.75);
  line-height: 1.8;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(254,249,225,0.40);
  max-width: none;
}

.footer-bottom a {
  color: rgba(254,249,225,0.55);
  transition: color 0.2s;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-image-block { max-width: 480px; margin: 0 auto; }
  .hero-headline { font-size: 4rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  .section { padding: 64px 20px; }

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

  .hero-content { padding: 48px 20px; }
  .hero-headline { font-size: 3rem; }

  .intro-grid,
  .grid-2,
  .grid-3,
  .contact-grid { grid-template-columns: 1fr; }

  .intro-img-accent { display: none; }
  .intro-img-main { aspect-ratio: 4/3; }

  .hero-badge { bottom: -12px; left: 12px; }

  .service-card {
    grid-template-columns: 1fr;
  }
  .service-card.reverse { direction: ltr; }

  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .gallery-masonry { columns: 1; }

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

@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .page-hero h1 { font-size: 2.6rem; }
}
