@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;1,9..144,300;1,9..144,400&family=Jost:wght@300;400;500&display=swap');

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

:root {
  --deep:    #2E4546;
  --teal:    #5B7B7A;
  --mid:     #A8BDB8;
  --cream:   #EAE6DD;
  --sand:    #D4C8B0;
  --white:   #ffffff;
  --ff-display: 'Fraunces', serif;
  --ff-body:    'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-weight: 300;
  color: var(--deep);
  background: var(--white);
  overflow-x: hidden;
}

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

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

/* ===== TYPOGRAPHY ===== */
.section-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 400;
  margin-bottom: 14px;
  display: block;
}

h1, h2, h3 {
  font-family: var(--ff-display);
  font-weight: 300;
  line-height: 1.15;
}

h1 { font-size: clamp(38px, 5vw, 62px); font-style: italic; }
h2 { font-size: clamp(28px, 3.5vw, 44px); font-style: italic; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-style: italic; }

p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--teal);
  font-weight: 300;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--deep);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 34px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-primary:hover { background: var(--teal); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--deep);
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px 34px;
  border: 0.5px solid var(--deep);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline:hover { background: var(--deep); color: var(--cream); }

.btn-light {
  display: inline-block;
  background: var(--sand);
  color: var(--deep);
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 34px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-light:hover { background: var(--mid); }

.text-link {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--deep);
  font-weight: 400;
  border-bottom: 0.5px solid var(--teal);
  padding-bottom: 3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.text-link:hover { color: var(--teal); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(234, 230, 221, 0.97);
  padding: 16px 60px;
  box-shadow: 0 1px 0 rgba(46, 69, 70, 0.1);
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--deep);
  letter-spacing: 0.02em;
}

.nav-logo span { font-style: normal; font-weight: 400; }

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

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--deep);
  font-weight: 400;
  transition: color 0.2s ease;
}

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

.nav-cta {
  background: var(--deep);
  color: var(--cream) !important;
  padding: 10px 24px;
  font-size: 10px !important;
  letter-spacing: 0.22em !important;
  transition: background 0.3s ease !important;
}

.nav-cta:hover { background: var(--teal) !important; color: var(--cream) !important; }

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

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--deep);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--ff-display);
  font-size: 32px;
  font-style: italic;
  font-weight: 300;
  color: var(--deep);
  letter-spacing: 0.02em;
}

.mobile-menu .mobile-cta {
  font-family: var(--ff-body);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--deep);
  color: var(--cream);
  padding: 16px 40px;
}

.mobile-close {
  position: absolute;
  top: 28px;
  right: 60px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--deep);
  cursor: pointer;
  font-family: var(--ff-display);
  font-weight: 300;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  padding: 140px 60px 80px 60px;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
  display: block;
}

.hero-content h1 {
  color: var(--deep);
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-image {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

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

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--teal);
  padding: 28px 60px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}

.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sand);
  flex-shrink: 0;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--cream);
  padding: 100px 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-images {
  height: 560px;
  overflow: hidden;
}

.about-img-main {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.about-img-main:hover img { transform: scale(1.03); }

.about-content h2 {
  color: var(--deep);
  margin-bottom: 6px;
}

.injector-name {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
  display: block;
  font-weight: 400;
}

.about-content p {
  margin-bottom: 36px;
  max-width: 460px;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 400;
  color: var(--deep);
  letter-spacing: 0.03em;
}

.trust-list .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.about-sig {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 0.5px solid var(--mid);
}

.sig-name {
  font-family: var(--ff-display);
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  color: var(--deep);
  margin-bottom: 4px;
}

.sig-title {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 300;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
  background: var(--white);
  padding: 100px 60px;
}

.services-preview-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-preview-header h2 { color: var(--deep); }

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.service-card {
  background: var(--cream);
  padding: 48px 36px;
  transition: background 0.3s ease;
}

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

.service-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  color: var(--teal);
}

.service-card h3 {
  font-size: 22px;
  color: var(--deep);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-card .text-link { font-size: 10px; }

.services-preview-cta { text-align: center; }

/* ===== RESULTS ===== */
.results {
  background: var(--cream);
  padding: 100px 60px;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.results-left .before-after {
  width: 100%;
  height: 420px;
  overflow: hidden;
  margin-bottom: 20px;
}

.results-left .glow-shot {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.results-right h2 {
  color: var(--deep);
  margin-bottom: 40px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.testimonial {
  padding-left: 20px;
  border-left: 1px solid var(--mid);
}

.testimonial .stars {
  font-size: 12px;
  color: var(--teal);
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.testimonial blockquote {
  font-size: 14px;
  font-style: italic;
  line-height: 1.8;
  color: var(--deep);
  font-family: var(--ff-display);
  font-weight: 300;
  margin-bottom: 10px;
}

.testimonial cite {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  font-style: normal;
  font-weight: 400;
}

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

.cta-banner-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
}

.cta-banner-bg img { object-fit: cover; width: 100%; height: 100%; }

.cta-banner-content { position: relative; z-index: 1; }

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

.cta-banner p {
  color: var(--mid);
  max-width: 500px;
  margin: 0 auto 40px;
  font-size: 15px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--deep);
  padding: 70px 60px 32px;
  border-top: 0.5px solid rgba(168, 189, 184, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  max-width: 1200px;
}

.footer-brand .footer-logo {
  font-family: var(--ff-display);
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 12px;
}

.footer-brand .footer-logo span { font-style: normal; font-weight: 400; }

.footer-tagline {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 0.5px solid rgba(168, 189, 184, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-socials a:hover { border-color: var(--mid); color: var(--cream); }

.footer-socials svg { width: 15px; height: 15px; }

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 400;
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: var(--mid);
  font-weight: 300;
  transition: color 0.2s ease;
}

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

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--mid);
  font-weight: 300;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--mid);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 0.5px solid rgba(168, 189, 184, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
}

.footer-bottom p {
  font-size: 11px;
  color: rgba(168, 189, 184, 0.5);
  font-weight: 300;
}

/* ===== SERVICES PAGE — HERO ===== */
.services-hero {
  background: var(--deep);
  padding: 160px 60px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.services-hero-bg { display: none; }
.services-hero-overlay { display: none; }

.services-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 40px;
}

.services-hero-content .section-label { color: var(--mid); }

.services-hero-content h1 {
  color: var(--cream);
  margin-bottom: 16px;
}

.services-hero-content p {
  color: var(--mid);
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
}

/* ===== SERVICE BLOCKS ===== */
.service-block {
  padding: 100px 60px;
}

.service-block:nth-child(even) { background: var(--white); }
.service-block:nth-child(odd) { background: var(--cream); }

.service-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

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

.service-block-image {
  overflow: hidden;
  height: 500px;
}

.service-block-image.tall { height: 600px; }

.service-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-block-image:hover img { transform: scale(1.03); }

.service-block-content .block-num {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  display: block;
  font-weight: 400;
}

.service-block-content h2 {
  color: var(--deep);
  margin-bottom: 20px;
}

.service-block-content p {
  margin-bottom: 28px;
  max-width: 440px;
}

.expect-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  padding: 24px;
  background: rgba(91, 123, 122, 0.08);
}

.expect-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--deep);
  font-weight: 400;
}

.expect-list .line {
  width: 20px;
  height: 1px;
  background: var(--teal);
  flex-shrink: 0;
}

/* ===== ROOM FEATURE ===== */
.room-feature {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.room-feature-bg {
  position: absolute;
  inset: 0;
}

.room-feature-bg img { object-fit: cover; width: 100%; height: 100%; }

.room-feature-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 69, 70, 0.45);
}

.room-feature-content {
  position: relative;
  z-index: 1;
  padding: 0 60px;
  max-width: 700px;
}

.room-feature-content h2 {
  color: var(--cream);
  margin-bottom: 16px;
}

.room-feature-content p {
  color: var(--mid);
  font-size: 16px;
}

/* ===== PROCESS ===== */
.process {
  background: var(--white);
  padding: 100px 60px;
}

.process-header {
  text-align: center;
  margin-bottom: 70px;
}

.process-header h2 { color: var(--deep); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
  height: 0.5px;
  background: var(--mid);
}

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

.step-num {
  width: 44px;
  height: 44px;
  border: 0.5px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 400;
  margin: 0 auto 24px;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-size: 20px;
  color: var(--deep);
  margin-bottom: 12px;
}

.process-step p { font-size: 14px; max-width: 260px; margin: 0 auto; }

/* ===== FAQ ===== */
.faq {
  background: var(--cream);
  padding: 100px 60px;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 { color: var(--deep); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 0.5px solid var(--mid);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--deep);
  gap: 16px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 0.5px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--teal);
  transition: transform 0.3s ease;
  font-weight: 300;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
  padding-bottom: 24px;
  font-size: 14px;
  line-height: 1.85;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav { padding: 20px 32px; }
  .nav.scrolled { padding: 14px 32px; }
  .nav-links { gap: 28px; }
  .hero-content { padding: 120px 32px 60px; }
  .about { padding: 80px 32px; }
  .services-preview { padding: 80px 32px; }
  .results { padding: 80px 32px; }
  .cta-banner { padding: 80px 32px; }
  footer { padding: 60px 32px 28px; }
  .service-block { padding: 80px 32px; }
  .process { padding: 80px 32px; }
  .faq { padding: 80px 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-close { right: 32px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 120px 28px 48px; }
  .hero-image { height: 60vw; min-height: 300px; }
  .hero-actions { gap: 20px; }

  .trust-strip { gap: 24px; padding: 24px 28px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { grid-template-rows: 280px 140px; }
  .about { padding: 70px 28px; }

  .services-cards { grid-template-columns: 1fr; gap: 2px; }
  .services-preview { padding: 70px 28px; }

  .results-grid { grid-template-columns: 1fr; gap: 48px; }
  .results { padding: 70px 28px; }
  .results-left .before-after { height: 280px; }
  .results-left .glow-shot { height: 180px; }

  .cta-banner { padding: 70px 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 60px 28px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .services-hero { height: 50vh; }

  .service-block { padding: 70px 28px; }
  .service-block-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-block-grid.reverse { direction: ltr; }
  .service-block-image { height: 300px; }
  .service-block-image.tall { height: 380px; }

  .room-feature { height: 380px; }
  .room-feature-content { padding: 0 28px; }

  .process { padding: 70px 28px; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::before { display: none; }

  .faq { padding: 70px 28px; }

  .trust-strip .trust-item:not(:first-child)::before { display: none; }
}

/* ===== CONTACT FORM ===== */
.contact-section {
  background: var(--cream);
  padding: 100px 60px;
}

.contact-inner {
  max-width: 760px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-header h2 { color: var(--deep); }
.contact-header p {
  max-width: 480px;
  margin: 12px auto 0;
  font-size: 15px;
}

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

.contact-form .field-full { grid-column: 1 / 3; }

.contact-form label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 400;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--white);
  border: 0.5px solid var(--mid);
  padding: 14px 18px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--deep);
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
  border-radius: 0;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--mid);
  font-weight: 300;
}

.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235B7B7A' stroke-width='1.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-submit {
  grid-column: 1 / 3;
  text-align: center;
  padding-top: 8px;
}

.contact-note {
  font-size: 12px;
  color: var(--teal);
  margin-top: 16px;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .contact-section { padding: 70px 28px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .field-full,
  .contact-submit { grid-column: 1; }
}
