/* ═══════════════════════════════════════════
   JADE PHOTOGRAPHY — LIGHT THEME
   Design: warm editorial, photography-first
   Fonts: Playfair Display + Inter + DM Mono
   ═══════════════════════════════════════════ */

:root {
  --bg:          #faf9f6;
  --bg-warm:     #f3f0eb;
  --bg-accent:   #edeae4;
  --text:        #2c2926;
  --text-mid:    #6b6560;
  --text-light:  #9b958e;
  --champagne:   #b89b6a;
  --champagne-dk:#9a7f52;
  --ink:         #1a1816;
  --white:       #ffffff;
  --border:      #e0dbd4;
  --shadow:      0 2px 20px rgba(44,41,38,0.08);
  --shadow-lg:   0 12px 40px rgba(44,41,38,0.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.1; color: var(--ink); }
h1 { font-size: clamp(44px, 7vw, 80px); letter-spacing: -0.02em; }
h2 { font-size: clamp(34px, 5vw, 56px); letter-spacing: -0.01em; }
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 600; }
h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; color: var(--champagne); }
.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--champagne); display: block; margin-bottom: 16px;
}
.text-link {
  font-family: 'DM Mono', monospace;
  font-size: 13px; letter-spacing: 0.1em;
  color: var(--champagne); display: inline-block; margin-top: 20px;
  transition: color 0.2s ease;
}
.text-link:hover { color: var(--champagne-dk); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--champagne); color: var(--white);
  font-size: 14px; font-weight: 500; letter-spacing: 0.03em;
  padding: 14px 28px; border-radius: 4px;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-primary:hover { background: var(--champagne-dk); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--border); color: var(--text);
  font-size: 14px; letter-spacing: 0.03em;
  padding: 13px 26px; border-radius: 4px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-outline:hover { border-color: var(--champagne); color: var(--champagne); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(44,41,38,0.12); }
.nav-logo img { height: 38px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 13px; letter-spacing: 0.06em;
  color: var(--text-mid); transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  border: 1.5px solid var(--champagne); color: var(--champagne) !important;
  padding: 8px 18px; border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease !important;
}
.nav-cta:hover { background: var(--champagne); color: var(--white) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 28px; height: 20px; position: relative; }
.nav-toggle span {
  display: block; position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--ink); transition: all 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }
@media (max-width: 860px) {
  nav { padding: 16px 22px; }
  .nav-toggle { display: block; z-index: 101; }
  .nav-links {
    position: fixed; inset: 0; background: var(--bg);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 32px; opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-links a { font-size: 18px; }
}

/* ── HERO ── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh; padding-top: 80px;
}
.hero-inner {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px 40px 60px 40px;
  max-width: 620px; margin-left: auto;
}
.hero-inner .eyebrow { margin-bottom: 20px; }
.hero-inner h1 { margin-bottom: 24px; }
.hero-sub {
  font-size: 17px; color: var(--text-mid); line-height: 1.7;
  max-width: 46ch; margin-bottom: 36px; font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image {
  overflow: hidden; position: relative;
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroSettle 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transform: scale(1.06);
}
@keyframes heroSettle { to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .hero-image img { animation: none; transform: none; } }
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-inner { padding: 120px 22px 40px; max-width: none; }
  .hero-image { height: 50vh; min-height: 320px; }
}

/* ── SERVICES STRIP ── */
.services-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.strip-card {
  position: relative; overflow: hidden;
  background: var(--bg); padding: 0;
  display: flex; flex-direction: column;
}
.strip-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.5s ease;
}
.strip-card:hover img { transform: scale(1.04); }
.strip-card-content { padding: 28px 28px 32px; }
.strip-card-content h3 { margin-bottom: 8px; }
.strip-card-content p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.strip-link {
  font-family: 'DM Mono', monospace;
  font-size: 12px; letter-spacing: 0.1em;
  color: var(--champagne); display: block; margin-top: 14px;
  transition: letter-spacing 0.2s ease;
}
.strip-card:hover .strip-link { letter-spacing: 0.15em; }
@media (max-width: 700px) { .services-strip { grid-template-columns: 1fr; } }

/* ── ABOUT PREVIEW ── */
.about-preview { padding: 100px 40px; }
.about-preview-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-preview-text p { color: var(--text-mid); margin-bottom: 14px; font-weight: 300; line-height: 1.75; }
.about-preview-text h2 { margin-bottom: 24px; }
.about-preview-image { overflow: hidden; border-radius: 6px; }
.about-preview-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; }
@media (max-width: 860px) {
  .about-preview { padding: 72px 22px; }
  .about-preview-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ── GALLERY PREVIEW ── */
.gallery-preview { padding: 100px 40px; background: var(--bg-warm); }
.gallery-preview-header { max-width: 1100px; margin: 0 auto 48px; }
.gallery-preview-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.gp-item { overflow: hidden; border-radius: 4px; }
.gp-item img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.5s ease;
}
.gp-item:hover img { transform: scale(1.05); }
.gp-item.gp-wide { grid-column: span 2; }
.gp-item.gp-wide img { aspect-ratio: 16/9; }
.gallery-preview-cta { max-width: 1100px; margin: 40px auto 0; text-align: center; }
@media (max-width: 700px) {
  .gallery-preview { padding: 72px 22px; }
  .gallery-preview-grid { grid-template-columns: 1fr 1fr; }
  .gp-item.gp-wide { grid-column: span 2; }
}

/* ── TESTIMONIALS ── */
.testimonials { padding: 100px 40px; }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-header { margin-bottom: 48px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); padding: 36px 32px; border-radius: 6px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.testimonial-card p {
  font-size: 15px; line-height: 1.75; color: var(--text-mid);
  font-style: italic; margin-bottom: 20px;
}
.testimonial-card cite {
  font-family: 'DM Mono', monospace; font-style: normal;
  font-size: 12px; letter-spacing: 0.1em; color: var(--champagne);
}
@media (max-width: 860px) {
  .testimonials { padding: 72px 22px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── WHAT YOU GET ── */
.what-you-get { padding: 100px 40px; background: var(--bg-warm); }
.wyg-inner { max-width: 1100px; margin: 0 auto; }
.wyg-header { margin-bottom: 48px; }
.wyg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.wyg-item { padding: 32px 28px; background: var(--white); border-radius: 6px; border: 1px solid var(--border); }
.wyg-icon { font-size: 28px; margin-bottom: 16px; }
.wyg-item h3 { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.wyg-item p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
@media (max-width: 860px) {
  .what-you-get { padding: 72px 22px; }
  .wyg-grid { grid-template-columns: 1fr; }
}

/* ── CLIENTS ── */
.clients { padding: 80px 40px; }
.clients-inner { max-width: 1100px; margin: 0 auto; }
.clients-header { margin-bottom: 36px; text-align: center; }
.logo-row {
  display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center;
  gap: 20px;
}
.logo-chip {
  height: 100px; width: 180px;
  display: flex; align-items: center; justify-content: center;
  padding: 22px 26px;
  background: var(--white);
  border-radius: 8px; border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.logo-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.logo-chip img {
  max-height: 100%; max-width: 100%;
  width: auto; height: auto; object-fit: contain;
}
@media (max-width: 600px) {
  .clients { padding: 60px 22px; }
  .logo-chip { height: 80px; width: 44%; padding: 16px 18px; }
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 100px 40px;
  background: var(--ink); color: var(--bg);
  text-align: center;
}
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-inner h2 { color: var(--bg); margin-bottom: 16px; }
.cta-inner h2 em { color: var(--champagne); }
.cta-inner > p { color: rgba(250,249,246,0.65); margin-bottom: 36px; font-weight: 300; }
.cta-contacts { display: flex; justify-content: center; gap: 48px; margin-bottom: 36px; flex-wrap: wrap; }
.cta-contact { text-align: center; }
.cta-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,249,246,0.4); display: block; margin-bottom: 8px;
}
.cta-contact a {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 600; color: var(--bg);
  transition: color 0.2s ease;
}
.cta-contact a:hover { color: var(--champagne); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-outline { border-color: rgba(250,249,246,0.25); color: var(--bg); }
.cta-section .btn-outline:hover { border-color: var(--champagne); color: var(--champagne); }
@media (max-width: 600px) { .cta-section { padding: 72px 22px; } }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); background: var(--bg); }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 60px 40px 40px;
  display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.footer-logo { height: 44px; width: auto; margin-bottom: 12px; }
.footer-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: 15px; color: var(--text-mid); margin-bottom: 4px; }
.footer-sub { font-size: 13px; color: var(--text-light); }
.footer-nav { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 4px;
}
.footer-col a { font-size: 14px; color: var(--text-mid); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--champagne); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding: 20px 40px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--text-light);
}
.footer-bottom a { color: var(--champagne); }
@media (max-width: 700px) {
  .footer-inner { padding: 40px 22px 30px; flex-direction: column; }
  .footer-nav { flex-wrap: wrap; gap: 32px; }
  .footer-bottom { padding: 16px 22px; }
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Fade-up hero animations */
.fade-up { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease forwards; }
.fade-up.d2 { animation-delay: 0.15s; }
.fade-up.d3 { animation-delay: 0.3s; }
.fade-up.d4 { animation-delay: 0.45s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .fade-up { opacity: 1; transform: none; animation: none; } }

/* ── PAGE HERO (shared by subpages) ── */
.page-hero {
  position: relative; padding: 80px 40px 80px;
  margin-top: 78px;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,24,22,0.3), rgba(26,24,22,0.55));
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero-content .eyebrow { color: rgba(250,249,246,0.7); }
.page-hero-content h1 { color: var(--bg); }
.page-hero-content h1 em { color: var(--champagne); }
.page-hero-content p { color: rgba(250,249,246,0.75); font-size: 17px; font-weight: 300; line-height: 1.7; margin-top: 16px; }
@media (max-width: 700px) { .page-hero { padding: 60px 22px 60px; } }

/* ══════════════════════════════════════════
   SUBPAGE-SPECIFIC STYLES
   ══════════════════════════════════════════ */

/* ── ABOUT BODY ── */
.about-body { padding: 100px 40px; }
.about-body-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 280px 1fr; gap: 60px; align-items: start; }
.about-portrait img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 6px; }
.about-name { margin-top: 16px; }
.about-name h3 { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 600; }
.about-name span { font-size: 14px; color: var(--text-mid); }
.about-text h2 { margin-bottom: 28px; }
.about-text p { color: var(--text-mid); margin-bottom: 16px; font-weight: 300; line-height: 1.8; }
.about-services { padding: 80px 40px; background: var(--bg-warm); }
.about-services-inner { max-width: 1100px; margin: 0 auto; }
.about-services-inner h2 { margin-bottom: 40px; }
.about-extra-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-extra-card { background: var(--white); padding: 32px 28px; border-radius: 6px; border: 1px solid var(--border); }
.about-extra-card h3 { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.about-extra-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
@media (max-width: 860px) {
  .about-body { padding: 72px 22px; }
  .about-body-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-portrait { max-width: 240px; }
  .about-services { padding: 60px 22px; }
  .about-extra-grid { grid-template-columns: 1fr; }
}

/* ── GALLERY PAGE ── */
.gallery-page { padding: 80px 40px; }
.gallery-page-inner { max-width: 1200px; margin: 0 auto; }
.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 10px 20px; border: 1.5px solid var(--border);
  background: transparent; color: var(--text-mid); cursor: pointer;
  border-radius: 4px; transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--champagne); color: var(--champagne); }
.filter-btn.active { background: var(--champagne); border-color: var(--champagne); color: var(--white); }
.gallery-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.gallery-item { overflow: hidden; border-radius: 4px; }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.5s ease; cursor: pointer; }
.gallery-item:hover img { transform: scale(1.04); }
@media (max-width: 700px) {
  .gallery-page { padding: 60px 22px; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
}

/* ── LANDING PAGES (Weddings, Corporate, Portraits) ── */
.landing-intro { padding: 100px 40px; }
.landing-intro-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.landing-intro-text h2 { margin-bottom: 24px; }
.landing-intro-text p { color: var(--text-mid); margin-bottom: 14px; font-weight: 300; line-height: 1.8; }
.landing-intro-image { overflow: hidden; border-radius: 6px; }
.landing-intro-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
@media (max-width: 860px) {
  .landing-intro { padding: 72px 22px; }
  .landing-intro-inner { grid-template-columns: 1fr; gap: 36px; }
}

.landing-gallery { padding: 80px 40px; background: var(--bg-warm); }
.landing-gallery-inner { max-width: 1100px; margin: 0 auto; }
.landing-gallery-header { margin-bottom: 40px; }
.landing-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.lg-item { overflow: hidden; border-radius: 4px; }
.lg-item img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform 0.5s ease; }
.lg-item:hover img { transform: scale(1.04); }
@media (max-width: 860px) { .landing-gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .landing-gallery { padding: 60px 22px; } }

.landing-includes { padding: 80px 40px; }
.landing-includes-inner { max-width: 1100px; margin: 0 auto; }
.landing-includes-header { margin-bottom: 40px; }
.landing-includes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.li-item { background: var(--bg-warm); padding: 28px 24px; border-radius: 6px; border: 1px solid var(--border); }
.li-item h3 { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.li-item p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
@media (max-width: 860px) { .landing-includes { padding: 60px 22px; } .landing-includes-grid { grid-template-columns: 1fr; } }

/* ── FAQ ── */
.faq-body { padding: 80px 40px; }
.faq-body-inner { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 28px 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item h3 { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 600; margin-bottom: 10px; color: var(--ink); }
.faq-item p { font-size: 15px; color: var(--text-mid); line-height: 1.75; }
@media (max-width: 700px) { .faq-body { padding: 60px 22px; } }

/* ── CONTACT ── */
.contact-body { padding: 100px 40px; }
.contact-body-inner { max-width: 800px; margin: 0 auto; }
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
.contact-method { text-align: center; }
.contact-big {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600;
  color: var(--ink); display: block; margin-top: 8px;
  transition: color 0.2s ease;
}
a.contact-big:hover { color: var(--champagne); }
.contact-social { text-align: center; padding-top: 40px; border-top: 1px solid var(--border); }
.social-links { display: flex; gap: 24px; justify-content: center; margin-top: 16px; }
.social-links a {
  font-size: 14px; color: var(--text-mid); padding: 8px 16px;
  border: 1px solid var(--border); border-radius: 4px;
  transition: all 0.2s ease;
}
.social-links a:hover { border-color: var(--champagne); color: var(--champagne); }
@media (max-width: 700px) {
  .contact-body { padding: 72px 22px; }
  .contact-methods { grid-template-columns: 1fr; gap: 32px; }
  .social-links { flex-wrap: wrap; }
}

/* ── CONTACT FORM ── */
.contact-form-section {
  margin-top: 60px; padding-top: 60px;
  border-top: 1px solid var(--border);
}
.contact-form-section h2 { margin-bottom: 32px; }
.contact-form { max-width: 600px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; margin-bottom: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 4px;
  background: var(--white); color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 15px;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--champagne);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-message {
  padding: 14px 18px; border-radius: 4px; margin-bottom: 24px;
  font-size: 14px; line-height: 1.5;
}
.form-success { background: #f0f9f4; border: 1px solid #b8e0c8; color: #2d6a4f; }
.form-error { background: #fdf2f2; border: 1px solid #f0b8b8; color: #9b2c2c; }
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
