@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600&family=Inter:wght@400;500;600&display=swap");

:root {
  --bg: #f5f1ed;
  --primary: #2d5016; /* forest core */
  --primary-soft: #4a7c2c; /* moss highlight */
  --accent: #c1694f; /* clay accent */
  --text: #2f2b25;
  --muted: #5b4c40;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Georgia", "Times New Roman", serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

header {
  background: linear-gradient(
    135deg,
    #1f3510,
    #2d5016 45%,
    #4a7c2c 70%,
    #e4d4c7
  );
  color: #fff;
  padding: 0.85rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 40% 40%, #e7c7b7 0%, #1f3510 100%);
  box-shadow: 0 14px 32px rgba(19, 33, 12, 0.45);
  padding: 6px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  line-height: 1.1;
}

.brand-text span {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #f5ede4;
  text-shadow: 0 4px 16px rgba(16, 28, 10, 0.55);
}

.main-nav a {
  color: #f5ede4;
  text-decoration: none;
  font-size: 0.9rem;
  margin-left: 1rem;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a[aria-current="page"] {
  color: #fff;
  font-weight: 700;
}

.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3rem;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.hero {
  max-width: 1040px;
  margin: 0 auto;
  padding: 3.25rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2.25rem;
  align-items: center;
}

@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
  }
}

.hero-kicker {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--primary-soft);
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: 2.3rem;
  margin-bottom: 0.6rem;
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.btn-primary,
.btn-ghost {
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #2f262b;
  font-weight: 600;
}

.btn-primary:hover {
  filter: brightness(0.95);
}

.btn-ghost {
  background: var(--accent);
  border-color: var(--accent);
  color: #2f262b;
  font-weight: 700;
  box-shadow: 0 14px 22px rgba(193, 105, 79, 0.28);
}

.btn-ghost:hover {
  filter: brightness(0.95);
  box-shadow: 0 16px 26px rgba(193, 105, 79, 0.33);
}

.hero-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-note strong {
  font-weight: 600;
  color: var(--primary-soft);
}

.hero-art {
  background: #fff;
  border-radius: 1.6rem;
  padding: 1.6rem;
  color: var(--primary);
  position: relative;
  box-shadow: 0 16px 34px rgba(45, 64, 35, 0.12);
  border: 1px solid rgba(45, 64, 35, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.hero-art-note {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  text-align: center;
}

.hero-photo-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 1.2rem;
  border: 1px solid rgba(45, 64, 35, 0.1);
  background: linear-gradient(
    135deg,
    rgba(45, 64, 35, 0.08),
    rgba(193, 105, 79, 0.16)
  );
  padding: 1.5rem;
}

.hero-photo-grid img {
  width: min(100%, 320px);
  height: auto;
  object-fit: contain;
}

.logo-panel img {
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.15));
}

main {
  max-width: 1040px;
  margin: 0 auto 3.5rem;
  padding: 0 1.5rem 3rem;
}

section {
  margin-top: 2.6rem;
}

.scenic-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
  margin-top: 2.6rem;
}

.scenic-card {
  background: #fff;
  border-radius: 1.4rem;
  box-shadow: 0 20px 40px rgba(45, 64, 35, 0.08);
  border: 1px solid rgba(45, 64, 35, 0.08);
  overflow: hidden;
}

.scenic-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.scenic-card figcaption {
  padding: 1rem 1.2rem 1.3rem;
  font-size: 0.95rem;
  color: var(--primary);
  line-height: 1.4;
}

.section-header {
  max-width: 720px;
  margin-bottom: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--primary-soft);
  margin-bottom: 0.3rem;
}

h1,
h2 {
  color: var(--primary);
}

h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--primary-soft);
}

p {
  margin-bottom: 0.65rem;
}

a {
  color: var(--primary-soft);
}

a:hover {
  text-decoration: underline;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.7rem;
  margin-top: 0.8rem;
}

@media (max-width: 800px) {
  .two-column {
    grid-template-columns: 1fr;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.3rem;
  margin-top: 1rem;
}

.card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.2rem 1.25rem 1.25rem;
  box-shadow: 0 10px 22px rgba(45, 64, 35, 0.08);
  border: 1px solid rgba(45, 64, 35, 0.05);
  font-size: 0.95rem;
}

.card-highlight {
  background: linear-gradient(160deg, #ffffff, #f2e9df);
}

ul {
  margin-left: 1.1rem;
  margin-bottom: 0.6rem;
}

li {
  margin-bottom: 0.25rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.pill {
  font-size: 0.75rem;
  padding: 0.26rem 0.65rem;
  border-radius: 999px;
  background: rgba(45, 64, 35, 0.06);
  color: var(--muted);
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.list-tile {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(45, 64, 35, 0.08);
  box-shadow: 0 10px 20px rgba(45, 64, 35, 0.05);
}

.timeline {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(45, 64, 35, 0.15);
}

.timeline-step {
  background: #fff;
  border-radius: 0.9rem;
  padding: 0.9rem 1rem 0.9rem 2.3rem;
  border: 1px solid rgba(45, 64, 35, 0.08);
  box-shadow: 0 8px 18px rgba(45, 64, 35, 0.06);
  position: relative;
}

.timeline-step::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 8px;
  top: 1.1rem;
}

.timeline-label {
  font-weight: 700;
  color: var(--primary);
}

.contact-box {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 12px 24px rgba(45, 64, 35, 0.09);
  border: 1px solid rgba(45, 64, 35, 0.06);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 1.4rem;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-item {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.contact-label {
  font-weight: 600;
  color: var(--primary-soft);
}

.notice {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

.pt-profile-badge {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(45, 64, 35, 0.08);
  box-shadow: 0 10px 22px rgba(45, 64, 35, 0.08);
  text-decoration: none;
  color: var(--text);
  transition: transform 120ms ease, box-shadow 120ms ease;
  max-width: 520px;
  width: 100%;
}

.pt-profile-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(45, 64, 35, 0.12);
}

.pt-profile-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(145deg, #f2f6fb, #e6eef5);
  padding: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.pt-profile-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.pt-profile-name {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--primary);
}

.pt-verified-icon {
  color: #2563eb;
  font-size: 0.95rem;
}

.pt-profile-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
}

.pt-profile-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.9rem;
}

.pt-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #def7ec;
  color: #047857;
  display: inline-grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(4, 120, 87, 0.1);
}

footer {
  border-top: 1px solid rgba(45, 64, 35, 0.08);
  padding: 2.2rem 1.5rem 2rem;
  background: linear-gradient(180deg, #f4f7fb 0%, #e6eef5 100%);
  color: var(--text);
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.3rem;
}

.footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  background: #fff;
  padding: 6px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.footer-title {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
}

.footer-subtitle {
  font-weight: 600;
  color: var(--primary-soft);
  margin-bottom: 0.25rem;
}

.footer-links {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-links .pt-profile-badge {
  color: var(--text);
  max-width: none;
}

.footer-cta {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(45, 64, 35, 0.08);
  box-shadow: 0 10px 24px rgba(45, 64, 35, 0.08);
}

.footer-cta p {
  color: var(--muted);
  margin: 0.4rem 0 0.7rem;
}

.footer-bottom {
  max-width: 1040px;
  margin: 1.4rem auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---- Forms & scheduler ---- */

form {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--primary);
}

input,
textarea,
select,
button,
legend {
  font-family: inherit;
}

input[type="text"],
input[type="email"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(45, 64, 35, 0.16);
  font-size: 0.9rem;
  outline: none;
  background: #fdfdfd;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary-soft);
  box-shadow: 0 0 0 1px rgba(45, 64, 35, 0.15);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  border: none;
  background: var(--primary-soft);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  margin-top: 0.2rem;
}

button[type="submit"]:hover {
  filter: brightness(1.05);
}

.time-slot-list {
  border: 1px solid rgba(45, 64, 35, 0.12);
  border-radius: 0.9rem;
  padding: 0.9rem;
}

.time-slot-list legend {
  font-size: 0.95rem;
  color: var(--primary);
  padding: 0 0.3rem;
}

.time-slot {
  border-radius: 999px;
  border: 1px solid rgba(45, 64, 35, 0.18);
  padding: 0.45rem 0.95rem;
  font-size: 0.88rem;
  background: #f7f3f7;
  cursor: pointer;
  margin: 0.2rem;
}

.time-slot.selected {
  background: rgba(45, 64, 35, 0.15);
  border-color: var(--primary-soft);
  color: #2c2429;
}

.form-status {
  font-size: 0.88rem;
  color: var(--primary-soft);
  min-height: 1.2rem;
}

.page-hero {
  background: #efe7de;
  padding: 2.4rem 1.5rem 2rem;
  margin-bottom: 0.5rem;
}

.page-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.page-hero p {
  max-width: 820px;
  color: var(--muted);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}

.cta-panel {
  margin-top: 2.6rem;
  background: linear-gradient(135deg, rgba(45, 64, 35, 0.08), rgba(193, 105, 79, 0.2));
  border-radius: 1.4rem;
  padding: 1.4rem 1.5rem 1.6rem;
  box-shadow: 0 14px 28px rgba(19, 33, 12, 0.18);
}

.cta-panel-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .cta-panel-inner {
    grid-template-columns: 1fr;
  }
}

.cta-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--primary-soft);
  margin-bottom: 0.35rem;
}

.cta-panel h2 {
  font-size: 1.6rem;
  margin-bottom: 0.55rem;
  color: var(--primary);
}

.cta-panel p {
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cta-details {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(45, 64, 35, 0.1);
  padding: 1rem 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  display: grid;
  gap: 0.55rem;
}

.cta-detail {
  padding: 0.55rem 0.6rem;
  border-radius: 0.9rem;
  background: rgba(45, 64, 35, 0.04);
}

.cta-detail-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-soft);
  margin-bottom: 0.2rem;
}

.cta-detail div:last-child {
  color: var(--text);
  font-weight: 600;
}

.quick-link-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  box-shadow: 0 8px 18px rgba(45, 64, 35, 0.08);
  border: 1px solid rgba(45, 64, 35, 0.06);
}

.quick-link-card h3 {
  margin-bottom: 0.3rem;
}

.quick-link-card p {
  margin-bottom: 0.7rem;
}

.quick-link-card .btn-primary {
  display: inline-flex;
}

.about-photos {
  display: grid;
  gap: 1.5rem;
  margin-top: 0.6rem;
}

@media (min-width: 768px) {
  .about-photos {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.about-photo-main {
  text-align: center;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), #f1e8dd);
  border-radius: 1.6rem;
  padding: 1.5rem 1rem 1.8rem;
  border: 1px solid rgba(45, 64, 35, 0.08);
  box-shadow: 0 16px 30px rgba(45, 64, 35, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.about-photo-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 15%, rgba(193, 105, 79, 0.28), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(45, 64, 35, 0.16), transparent 50%);
  z-index: 0;
}

.about-headshot-frame {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(246, 241, 246, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(45, 64, 35, 0.15);
  border: 1px solid rgba(45, 64, 35, 0.08);
  padding: 1rem;
}

.about-headshot {
  width: 100%;
  max-width: 220px;
  border-radius: 50%;
  display: block;
  box-shadow: none;
}

.about-headshot-caption {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
  z-index: 1;
  max-width: 360px;
  text-align: center;
}

.about-action-photo {
  width: 100%;
  height: 100%;
  max-height: 360px;
  border-radius: 1.1rem;
  display: block;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.about-photo-secondary {
  position: relative;
  padding: 1.4rem;
  border-radius: 1.5rem;
  background: radial-gradient(circle at 25% 20%, rgba(193, 105, 79, 0.26), transparent 46%),
    radial-gradient(circle at 80% 40%, rgba(45, 64, 35, 0.14), transparent 50%),
    linear-gradient(145deg, #f1e8dd 0%, #e6d8cb 100%);
  box-shadow: 0 14px 30px rgba(45, 64, 35, 0.12);
  border: 1px solid rgba(45, 64, 35, 0.06);
  min-height: 320px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 0.8rem;
}

.value-card {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(45, 64, 35, 0.08);
  box-shadow: 0 10px 22px rgba(45, 64, 35, 0.08);
}

.headshot-wrap {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-top: 0.75rem;
}

.headshot-wrap img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(45, 64, 35, 0.15);
}

.headshot-wrap p {
  margin: 0;
  font-size: 0.9rem;
}

.form-card {
  background: var(--card);
  padding: 1.2rem 1.25rem 1.3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 22px rgba(45, 64, 35, 0.08);
  border: 1px solid rgba(45, 64, 35, 0.06);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.4rem;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

.hero-buttons .btn-primary,
.hero-buttons .btn-ghost {
  width: fit-content;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.process-step {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.1rem 1.2rem;
  border: 1px solid rgba(45, 64, 35, 0.08);
  box-shadow: 0 10px 20px rgba(45, 64, 35, 0.06);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.rate-table {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(45, 64, 35, 0.08);
  box-shadow: 0 12px 22px rgba(45, 64, 35, 0.06);
  margin-top: 1rem;
}

.rate-row {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid rgba(45, 64, 35, 0.08);
}

.rate-row:last-child {
  border-bottom: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.faq-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.1rem 1.2rem;
  border: 1px solid rgba(45, 64, 35, 0.08);
  box-shadow: 0 10px 20px rgba(45, 64, 35, 0.05);
}
