/* Sun to Summit Co. — Notary site */

:root {
  --brand-teal: #1D6160;
  --brand-teal-dark: #124040;
  --brand-teal-soft: #258080;
  --brand-teal-wash: #DFF0EE;
  --brand-gold: #E6B42B;
  --brand-gold-soft: #EEC949;
  --brand-gold-light: #F7EDD0;
  --brand-cream: #FAF5E8;
  --brand-ink: #0F1E1F;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--brand-ink);
  background: #ffffff;
  padding-bottom: 5rem;
  font-feature-settings: "ss01", "cv02";
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--brand-teal-dark);
  letter-spacing: -0.01em;
  font-weight: 600;
  margin: 0;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

*:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Layout helpers */
.container {
  max-width: 72rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) { .container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-left: 2rem; padding-right: 2rem; } }

.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 640px) { .section { padding-top: 5rem; padding-bottom: 5rem; } }
@media (min-width: 1024px) { .section { padding-top: 6rem; padding-bottom: 6rem; } }

.max-prose { max-width: 65ch; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-teal-soft);
  margin: 0 0 0.75rem 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
  border: 0;
}
.btn-primary {
  background: var(--brand-teal);
  color: #fff;
  box-shadow: 0 2px 8px rgba(29,97,96,0.3);
}
.btn-primary:hover {
  background: var(--brand-teal-dark);
  box-shadow: 0 0 20px rgba(29,97,96,0.55), 0 4px 12px rgba(0,0,0,0.12);
}
.btn-secondary {
  background: transparent;
  color: var(--brand-teal);
  border: 2px solid var(--brand-teal);
}
.btn-secondary:hover {
  background: var(--brand-teal);
  color: #fff;
  box-shadow: 0 0 16px rgba(29,97,96,0.4);
}
.btn-gold {
  background: var(--brand-gold);
  color: var(--brand-teal-dark);
  box-shadow: 0 2px 8px rgba(230,180,43,0.35);
}
.btn-gold:hover {
  background: var(--brand-gold-soft);
  box-shadow: 0 0 18px rgba(230,180,43,0.7), 0 4px 8px rgba(0,0,0,0.08);
}

.icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--brand-teal-wash);
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-link img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
}
@media (min-width: 640px) {
  .brand-link img { width: 4.5rem; height: 4.5rem; }
}
.brand-text { display: none; flex-direction: column; line-height: 1.1; }
@media (min-width: 640px) { .brand-text { display: flex; } }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--brand-teal-dark);
  font-weight: 600;
}
.brand-tagline {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-teal-soft);
  margin-top: 2px;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-teal-dark);
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a { transition: color 0.15s; }
.nav-links a:hover { color: var(--brand-gold); }

@keyframes phone-glow {
  0%, 100% { box-shadow: 0 0 6px 1px rgba(230,180,43,0.55), 0 0 16px 2px rgba(230,180,43,0.25); }
  50%       { box-shadow: 0 0 12px 3px rgba(230,180,43,0.85), 0 0 30px 6px rgba(230,180,43,0.42); }
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 0.375rem;
  background: var(--brand-gold);
  color: var(--brand-teal-dark);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 0 6px 1px rgba(230,180,43,0.55), 0 0 16px 2px rgba(230,180,43,0.25);
  animation: phone-glow 2.6s ease-in-out infinite;
  transition: background-color 0.15s, box-shadow 0.15s;
}
@media (min-width: 640px) { .header-phone { display: inline-flex; } }
.header-phone:hover {
  background: var(--brand-gold-soft);
  box-shadow: 0 0 18px 5px rgba(230,180,43,0.95), 0 0 40px 10px rgba(230,180,43,0.48);
  animation: none;
}
.header-phone .icon { width: 1rem; height: 1rem; }

/* Mobile header call button — icon only, visible < 640px */
.header-call-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.375rem;
  background: var(--brand-gold);
  color: var(--brand-teal-dark);
  flex-shrink: 0;
  animation: phone-glow 2.6s ease-in-out infinite;
  transition: background-color 0.15s;
}
.header-call-mobile:hover { background: var(--brand-gold-soft); animation: none; }
.header-call-mobile .icon { width: 1.25rem; height: 1.25rem; }
@media (min-width: 640px) { .header-call-mobile { display: none; } }

/* Hamburger button */
.hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: none;
  border: 1px solid var(--brand-teal-wash);
  border-radius: 0.375rem;
  color: var(--brand-teal-dark);
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.15s, border-color 0.15s;
}
.hamburger:hover { background: rgba(29,97,96,0.07); border-color: var(--brand-teal-soft); }
.hamburger .icon { width: 1.375rem; height: 1.375rem; }
@media (min-width: 768px) { .hamburger { display: none; } }

/* Mobile nav panel */
.mobile-nav {
  border-top: 1px solid var(--brand-teal-wash);
  background: #fff;
}
.mobile-nav .container { padding-top: 0.5rem; padding-bottom: 0.75rem; }
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--brand-teal-dark);
  border-bottom: 1px solid rgba(223,240,238,0.8);
  transition: color 0.15s;
  min-height: 2.75rem;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--brand-teal-soft); }
.mobile-nav-call {
  justify-content: center !important;
  background: var(--brand-teal) !important;
  color: #fff !important;
  border-radius: 0.375rem;
  border-bottom: none !important;
  font-weight: 600 !important;
  padding: 0.75rem !important;
  margin-top: 0.25rem;
}
.mobile-nav-call:hover { background: var(--brand-teal-dark) !important; color: #fff !important; }
@media (min-width: 768px) { .mobile-nav { display: none; } }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--brand-cream) 0%, #EDF6F5 45%, #ffffff 75%);
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(to right, var(--brand-teal), var(--brand-gold), var(--brand-teal-soft), var(--brand-gold), var(--brand-teal));
  filter: brightness(1.1);
}
.hero-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 640px) {
  .hero-inner { padding-top: 5rem; padding-bottom: 5rem; }
}
@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw + 0.5rem, 3.75rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero-lead {
  font-size: 1.125rem;
  color: rgba(15, 30, 31, 0.8);
  max-width: 65ch;
  margin-bottom: 2rem;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.875rem;
  color: var(--brand-teal-soft);
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-meta .icon { width: 0.875rem; height: 0.875rem; }

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) { .hero-image-wrap { justify-content: flex-end; } }
@media (max-width: 639px) { .hero-image-wrap { display: none; } }
.hero-image-glow {
  position: absolute;
  inset: -2rem;
  background: radial-gradient(ellipse, rgba(230,180,43,0.35) 0%, rgba(29,97,96,0.12) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(36px);
  pointer-events: none;
}
.hero-image-card {
  position: relative;
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  border: 1px solid var(--brand-teal-wash);
}
@media (min-width: 640px) { .hero-image-card { padding: 3rem; } }
.hero-image-card img {
  width: 16rem;
  height: auto;
  object-fit: contain;
}
@media (min-width: 640px) { .hero-image-card img { width: 20rem; } }
@media (min-width: 1024px) { .hero-image-card img { width: 24rem; } }

/* Trust strip */
.trust-strip {
  background: rgba(223, 240, 238, 0.65);
  border-top: 1px solid var(--brand-teal-wash);
  border-bottom: 1px solid var(--brand-teal-wash);
}
.trust-strip .container {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
}
@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--brand-teal-dark);
}
.trust-item .icon {
  width: 1.375rem;
  height: 1.375rem;
  color: var(--brand-gold);
}
.trust-item span {
  font-size: 0.875rem;
  font-weight: 500;
}
@media (min-width: 640px) { .trust-item span { font-size: 1rem; } }

/* Section headings */
.section-head {
  max-width: 42rem;
  margin-bottom: 3rem;
}
.section-head h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.section-head p {
  font-size: 1.125rem;
  color: rgba(15, 30, 31, 0.8);
}

/* Services */
.services-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  border: 1px solid var(--brand-teal-wash);
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(29,97,96,0.07);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
@media (min-width: 640px) { .service-card { padding: 1.75rem; } }
.service-card:hover {
  box-shadow: 0 8px 28px rgba(29,97,96,0.14), 0 0 16px rgba(230,180,43,0.2);
  border-color: rgba(230, 180, 43, 0.65);
  transform: translateY(-2px);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(29, 97, 96, 0.13);
  color: var(--brand-teal);
  margin-bottom: 1rem;
}
.service-icon .icon { width: 1.5rem; height: 1.5rem; }
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.service-list { font-size: 0.875rem; color: rgba(15, 30, 31, 0.8); }
.service-list li {
  display: flex;
  gap: 0.5rem;
  padding: 2px 0;
}
.service-list .bullet {
  color: var(--brand-gold);
  margin-top: 1px;
  flex-shrink: 0;
}

.services-note {
  margin-top: 2.5rem;
  border-left: 4px solid var(--brand-gold);
  background: rgba(217, 169, 42, 0.05);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: rgba(15, 30, 31, 0.8);
  max-width: 48rem;
}
.services-note strong { color: var(--brand-teal-dark); font-weight: 600; }

/* Mobile notary */
.mobile-notary {
  background: linear-gradient(135deg, #0C3D3D 0%, var(--brand-teal) 50%, var(--brand-teal-soft) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.mobile-notary::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 65%;
  padding-top: 65%;
  background: radial-gradient(circle, rgba(230,180,43,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.mobile-notary h2, .mobile-notary .eyebrow { color: #fff; }
.mobile-notary .eyebrow { color: var(--brand-gold-soft); }
.mobile-notary h2 { color: #fff; }
.mobile-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .mobile-grid { grid-template-columns: repeat(2, 1fr); }
}
.mobile-notary h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}
.mobile-notary p {
  color: rgba(255,255,255,0.85);
  max-width: 65ch;
}
.mobile-notary .lead {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.mobile-notary .sub { color: rgba(255,255,255,0.75); }

.places-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .places-list { grid-template-columns: repeat(2, 1fr); }
}
.place-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.1);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}
.place-item .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-gold-soft);
}

/* How it works */
.how {
  background: rgba(250, 246, 236, 0.6);
}
.steps {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.step-num-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--brand-gold);
  color: var(--brand-teal-dark);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(230,180,43,0.55), 0 0 22px rgba(230,180,43,0.22);
}
.step-icon { color: var(--brand-teal); }
.step-icon .icon { width: 1.375rem; height: 1.375rem; }
.steps h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.steps p { color: rgba(15, 30, 31, 0.8); }

/* About */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1.2fr; }
}
.about-image-wrap {
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) { .about-image-wrap { justify-content: flex-start; } }
.about-image-frame { position: relative; }
.about-image-frame::before {
  content: "";
  position: absolute;
  inset: -1.5rem;
  background: rgba(31, 84, 83, 0.05);
  border-radius: 1.5rem;
  transform: rotate(3deg);
}
.about-image-frame > div {
  position: relative;
  background: #fff;
  border: 1px solid var(--brand-teal-wash);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.about-image-frame img {
  width: 14rem;
  height: auto;
  object-fit: contain;
}
.about-copy h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}
.about-copy p {
  font-size: 1.125rem;
  color: rgba(15, 30, 31, 0.8);
  max-width: 65ch;
}
.about-copy p + p { margin-top: 1rem; }

/* Service area */
.service-area {
  background: rgba(232, 238, 236, 0.4);
  border-top: 1px solid var(--brand-teal-wash);
  border-bottom: 1px solid var(--brand-teal-wash);
}
.service-area .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
.area-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 48rem;
  margin: 0 auto;
}
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid var(--brand-teal-wash);
  color: var(--brand-teal-dark);
  font-size: 0.875rem;
  font-weight: 500;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.area-pill:hover {
  border-color: var(--brand-gold);
  box-shadow: 0 0 10px rgba(230,180,43,0.3);
}
.area-pill .icon {
  width: 0.8125rem;
  height: 0.8125rem;
  color: var(--brand-gold);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
}
.contact-list { display: grid; gap: 1.25rem; }
.contact-row {
  display: flex;
  gap: 1rem;
}
.contact-row .icon-bubble {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(29, 97, 96, 0.14);
  color: var(--brand-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-row .icon-bubble .icon { width: 1.25rem; height: 1.25rem; }
.contact-row .small-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-teal-soft);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.contact-row .big-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--brand-teal-dark);
  transition: color 0.15s;
  word-break: break-word;
}
a.big-value:hover { color: var(--brand-gold); }

.hours-card {
  background: rgba(250, 246, 236, 0.6);
  border: 1px solid var(--brand-teal-wash);
  border-radius: 1rem;
  padding: 1.5rem;
}
@media (min-width: 640px) { .hours-card { padding: 2rem; } }
.hours-card .head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.hours-card .head .icon { color: var(--brand-gold); width: 1.25rem; height: 1.25rem; }
.hours-card h3 { font-size: 1.5rem; }
.hours-list { display: grid; gap: 0.75rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(15, 30, 31, 0.8);
  border-bottom: 1px solid rgba(232, 238, 236, 0.6);
  padding-bottom: 0.5rem;
}
.hours-row:last-child { border-bottom: 0; padding-bottom: 0; }
.hours-row .days { font-weight: 500; color: var(--brand-teal-dark); }
.hours-card .footnote {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--brand-teal-wash);
  font-size: 0.875rem;
  color: rgba(15, 30, 31, 0.7);
}

/* Contact form */
.contact-form {
  background: rgba(250, 246, 236, 0.6);
  border: 1px solid var(--brand-teal-wash);
  border-radius: 1rem;
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .contact-form { padding: 2rem; } }
.form-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}
.form-head .icon { color: var(--brand-gold); width: 1.25rem; height: 1.25rem; }
.form-head h3 {
  font-size: 1.5rem;
  margin: 0;
}
.field {
  display: grid;
  gap: 0.375rem;
}
.field label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--brand-teal-soft);
}
.field input,
.field textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--brand-ink);
  background: #ffffff;
  border: 1px solid var(--brand-teal-wash);
  border-radius: 0.5rem;
  padding: 0.625rem 0.875rem;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea {
  resize: vertical;
  min-height: 6rem;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px rgba(31, 84, 83, 0.15);
}
.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: #c84a3a;
}
/* Honeypot field — visually and assistively hidden */
.contact-form input[name="_gotcha"] {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-submit {
  margin-top: 0.25rem;
  width: 100%;
}
@media (min-width: 640px) {
  .form-submit { width: auto; justify-self: start; }
}
.form-note {
  font-size: 0.8125rem;
  color: rgba(15, 30, 31, 0.65);
  margin-top: 0.25rem;
}
.form-note a {
  color: var(--brand-teal);
  font-weight: 600;
  border-bottom: 1px dotted currentColor;
}
.form-note a:hover { color: var(--brand-gold); }

.contact .lead {
  font-size: 1.125rem;
  color: rgba(15, 30, 31, 0.8);
  max-width: 65ch;
  margin-bottom: 2rem;
}
.contact h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

/* Footer */
.site-footer {
  background: var(--brand-teal-dark);
  color: rgba(255,255,255,0.85);
}
.site-footer .container {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-brand img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  background: #fff;
  border-radius: 0.5rem;
  padding: 4px;
}
.footer-brand .fb-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
}
.footer-brand .fb-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-gold-soft);
}
.site-footer .blurb { font-size: 0.875rem; max-width: 22rem; }
.site-footer h3 {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.site-footer ul li {
  font-size: 0.875rem;
  padding: 2px 0;
}
.site-footer ul a { transition: color 0.15s; }
.site-footer ul a:hover { color: var(--brand-gold-soft); }
.site-footer .hours-line {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}
.site-footer .hours-line span:last-child { color: rgba(255,255,255,0.7); }
.site-footer .legal {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  display: grid;
  gap: 0.75rem;
}
.site-footer .legal strong { color: #fff; }

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: #fff;
  border-top: 1px solid var(--brand-teal-wash);
  box-shadow: 0 -4px 6px -1px rgba(0,0,0,0.05);
  padding: 0.5rem 0.75rem;
  display: flex;
  gap: 0.5rem;
}
@media (min-width: 768px) { .sticky-cta { display: none; } }
.sticky-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1rem;
}
.sticky-cta .call {
  border: 2px solid var(--brand-teal);
  color: var(--brand-teal);
}
.sticky-cta .email {
  background: var(--brand-teal);
  color: #fff;
}

/* Utilities */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
