/* Gittings Real Estate, warm residential */

:root {
  --blue: #3d5c4a;
  --blue-dark: #2d4638;
  --blue-deep: #2a3d34;
  --sky: #c4b49a;
  --sky-soft: #efe4d2;
  --sky-mid: #d8c8ae;
  --ink: #2c241c;
  --muted: #6a5c4e;
  --line: #d8cbb8;
  --bg: #f7f1e8;
  --bg-soft: #efe6d6;
  --placeholder: #e4d6c2;
  --paper: #fffaf3;
  --clay: #8b5a3c;
  --header-h: 84px;
  --wrap: 1120px;
  --radius: 14px;
  --shadow: 0 10px 28px rgba(44, 36, 28, 0.08);
  --font: "Montserrat", system-ui, -apple-system, Segoe UI, sans-serif;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
button, input, select, textarea { font-family: inherit; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue);
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
}
.skip:focus { left: 12px; top: 12px; }

section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }
.wrap {
  width: min(var(--wrap), calc(100% - 32px));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  border-radius: 6px;
}
.btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
.btn-blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--sky-soft);
  color: var(--blue-dark);
}
.btn-ghost {
  background: #f7f1e8;
  color: #3a2c22;
  border-color: #f7f1e8;
}
.btn-ghost:hover { background: #efe4d2; }
.btn-lg { padding: 15px 24px; font-size: 13px; }
.btn-md { padding: 11px 18px; font-size: 12px; }
.btn-sm { padding: 9px 14px; font-size: 11px; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: #f3eadc;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(1240px, calc(100% - 24px));
  margin-inline: auto;
}
.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}
.site-header .logo img {
  height: 56px;
  width: auto;
  max-width: min(280px, 58vw);
  object-fit: contain;
}
.header-panel {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--blue); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  margin-left: auto;
  position: relative;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: absolute;
  left: 11px;
}
.menu-toggle span { top: 21px; }
.menu-toggle span::before { content: ""; top: -7px; }
.menu-toggle span::after { content: ""; top: 7px; }

.hero {
  background:
    radial-gradient(1200px 420px at 90% -10%, rgba(196, 180, 154, 0.38), transparent 60%),
    linear-gradient(180deg, #efe4d2 0%, var(--bg) 100%);
  padding: 14px 0 16px;
  border-bottom: 1px solid var(--line);
}
.hero-inner { max-width: 720px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.lede {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.available { margin: 0; }
.avail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.avail-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(44, 36, 28, 0.10);
  display: grid;
  grid-template-columns: 1fr;
}
.avail-photo {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--placeholder);
  overflow: hidden;
}
.avail-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avail-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(44, 36, 28, 0.22);
}
.avail-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.avail-body h2 {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.avail-body p { margin: 0; color: var(--muted); font-size: 15px; }
.avail-body .rent { color: var(--ink); }
.avail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.avail-wait {
  margin: 8px 0 0;
  font-size: 15px;
  color: var(--muted);
}
.avail-wait a { font-weight: 600; text-decoration: none; }
.avail-wait a:hover { text-decoration: underline; }

.avail-gallery {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--paper);
}
.avail-gallery .avail-photo {
  flex: 1 1 auto;
}
.avail-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-deep);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(44, 36, 28, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 3px;
  z-index: 2;
}
.avail-nav:hover {
  background: #fff;
  color: var(--blue);
}
.avail-nav:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.avail-prev { left: 10px; }
.avail-next { right: 10px; }
.avail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 4px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.avail-thumbs button {
  margin: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: var(--placeholder);
  line-height: 0;
}
.avail-thumbs button img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.avail-thumbs button.is-active,
.avail-thumbs button[aria-selected="true"] {
  border-color: var(--blue);
}
.avail-thumbs button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.avail-flag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  background: var(--sky-soft);
  border: 1px solid var(--sky-mid);
  border-radius: 8px;
  padding: 10px 12px;
  margin: 4px 0 8px;
}
.avail-flag p {
  margin: 0;
  color: var(--blue-deep);
  font-weight: 600;
  font-size: 14px;
}
.prop-body .avail-flag .btn { margin-top: 0; align-self: center; }

@media (min-width: 700px) {
  .avail-card {
    grid-template-columns: 220px 1fr;
    min-height: 0;
    align-items: stretch;
  }
  .avail-gallery {
    height: auto;
  }
  .avail-photo {
    aspect-ratio: 16 / 10;
    min-height: 0;
    max-height: 148px;
    height: 148px;
    flex: 0 0 auto;
  }
  .avail-thumbs {
    display: none;
  }
  .avail-body {
    padding: 12px 16px 14px;
    justify-content: center;
    gap: 4px;
  }
  .avail-body h2 { font-size: 18px; }
  .avail-body p { font-size: 14px; }
  .avail-actions { margin-top: 8px; }
}


.section {
  padding: 64px 0;
}
.section-head {
  margin-bottom: 28px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 8px;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
}

.prop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.prop-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.prop-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, #e4d6c2 0%, #efe6d6 52%, #d4c4a8 100%);
  overflow: hidden;
}
.prop-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  color: var(--blue-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
  gap: 6px;
}
.prop-placeholder span {
  font-size: 15px;
}
.prop-placeholder small {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0.9;
}
.prop-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prop-photo.has-photo .prop-placeholder { opacity: 0; pointer-events: none; }
.prop-photo[data-photo="assets/207-crawford.jpg"] img { object-position: center 78%; }

.prop-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 8px 10px 0;
}
.prop-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  background: var(--placeholder);
}
@media (max-width: 520px) {
  .prop-gallery { grid-template-columns: repeat(3, 1fr); }
}
.prop-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.prop-body h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.town {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}
.prop-body p { margin: 0; color: var(--muted); font-size: 15px; }
.rent {
  font-weight: 700;
  color: var(--ink);
}
.prop-body .btn { margin-top: auto; align-self: flex-start; }
.also {
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
}

.cta-row {
  background: #3a2c22;
  color: #f7f1e8;
  padding: 48px 0;
}
.cta-row h2 { color: #f7f1e8; }
.cta-row p { color: rgba(247,241,232,0.84); margin: 0 0 22px; max-width: 52ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-row .btn-outline {
  color: #f7f1e8;
  border-color: #e6d8c0;
}
.cta-row .btn-outline:hover {
  background: #f7f1e8;
  color: #3a2c22;
}

.facts {
  background: var(--bg-soft);
}
.fact-grid {
  display: grid;
  gap: 18px;
}
.fact {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 1px 0 rgba(255, 250, 243, 0.8) inset;
}
.fact h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--blue-deep);
}
.fact p { margin: 0; color: var(--muted); }
.fact h3 a { color: inherit; text-decoration: none; }
.fact h3 a:hover { text-decoration: underline; }
.fact p a { color: var(--blue-deep); text-decoration: underline; }
.fact p a:hover { color: var(--ink); }

.contact-block {
  display: grid;
  gap: 28px;
}
.contact-block a { text-decoration: none; }
.contact-block a:hover { text-decoration: underline; }
.contact-dl {
  margin: 0;
}
.contact-dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.contact-dl dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-dl dd { margin: 0; }

.page-hero {
  background: var(--bg);
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  display: block;
  height: 118px;
  margin-bottom: 28px;
  background:
    linear-gradient(180deg, rgba(44, 36, 28, 0.08), rgba(247, 241, 232, 0.28) 70%, var(--bg)),
    url("assets/510-highland.jpg") center 48% / cover no-repeat;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 10px;
  color: var(--ink);
}
.page-hero p { margin: 0; color: var(--muted); max-width: 58ch; }

.form-sent {
  background: #e7f0e4;
  border: 1px solid #b7c9b0;
  color: #2a4a32;
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 22px;
}
.form-error {
  background: #fdecea;
  border: 1px solid #f3c4bf;
  color: #8a2218;
  padding: 12px 14px;
  border-radius: 10px;
  margin-top: 16px;
}
.site-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  max-width: 820px;
}
.form-grid {
  display: grid;
  gap: 16px;
}
.form-grid.two {
  grid-template-columns: 1fr;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 16px;
  background: var(--paper);
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(61, 92, 74, 0.40);
  border-color: var(--blue);
}
.field-help, .req-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}
.req { color: #b42318; }
fieldset {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  margin: 0 0 8px;
}
legend {
  font-weight: 700;
  padding: 0 6px;
  color: var(--ink);
}
.radio-row, .check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}
.radio, .check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.fee-box {
  background: var(--sky-soft);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 18px;
}
.fee-box p { margin: 0 0 8px; }
.fee-box p:last-child { margin: 0; }
.fair-housing {
  font-size: 13px;
  color: var(--muted);
  margin: 18px 0 0;
}

.lease {
  max-width: 820px;
}
.lease-note {
  background: var(--sky-soft);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 28px;
}
.lease h2 {
  font-size: 22px;
  margin-top: 32px;
}
.lease h3 {
  font-size: 17px;
  margin: 22px 0 8px;
  color: var(--blue-deep);
}
.lease p, .lease li { color: #2a3138; }
.lease ol.clauses {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: clause;
}
.lease ol.clauses > li {
  counter-increment: clause;
  margin: 0 0 22px;
}
.lease ol.clauses > li > h3::before {
  content: counter(clause) ". ";
}
.sig-grid {
  display: grid;
  gap: 18px;
  margin-top: 12px;
}
.sig-line {
  border-top: 1px solid var(--ink);
  padding-top: 8px;
  font-size: 14px;
  color: var(--muted);
}
.download-row { margin: 8px 0 0; }

.site-footer {
  background: #efe6d6;
  border-top: 1px solid var(--line);
  padding: 32px 0 40px;
  color: var(--muted);
  font-size: 14px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand img {
  height: 48px;
  width: auto;
}
.footer-meta a { color: var(--blue-dark); text-decoration: none; }
.footer-meta a:hover { text-decoration: underline; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}
.footer-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 700px) {
  .prop-grid { grid-template-columns: 1fr 1fr; }
  .form-grid.two { grid-template-columns: 1fr 1fr; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .contact-block { grid-template-columns: 1.1fr 0.9fr; }
  .sig-grid { grid-template-columns: 1fr 1fr; }
  .wrap { width: min(var(--wrap), calc(100% - 48px)); }
}

@media (min-width: 980px) {
  .site-header .logo img { height: 62px; max-width: 340px; }
}

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .header-panel {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #f3eadc;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    gap: 12px;
    box-shadow: var(--shadow);
  }
  .header-inner.is-open .header-panel { display: flex; }
  .nav { flex-direction: column; align-items: flex-start; gap: 4px; }
  .nav a { font-size: 14px; padding: 10px 0; }
  .header-ctas .btn { width: 100%; }
}

@media (max-width: 480px) {
  .hero { padding: 22px 0 24px; }
  .section { padding: 44px 0; }
  .site-form { padding: 18px; }
  .contact-dl div { grid-template-columns: 1fr; gap: 2px; }
  .avail-body { padding: 14px 14px 16px; }
}

.fee-box ul {
  margin: 8px 0 0;
  padding-left: 1.2em;
}
.fee-box li { margin: 0 0 6px; }

.site-form fieldset { margin: 20px 0 12px; }

.lease-doc {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  max-width: 820px;
  color: #2a3138;
}
.lease-doc h2 {
  font-family: var(--serif);
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 10px;
}
.lease-doc h3 {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 22px 0 8px;
  color: var(--blue-deep);
}
.lease-doc p,
.lease-doc li {
  color: #2a3138;
}
.lease-doc ul,
.lease-doc ol {
  padding-left: 1.25em;
}
.lease-note ul {
  margin: 10px 0 0;
  padding-left: 1.2em;
}
.lease-note li { margin: 0 0 6px; }
.lease-lead {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px 22px;
  margin: 28px 0;
}
.lease-lead h2 { margin-top: 8px; }
.page-hero .download-row { margin-top: 16px; }

.lease-summary { max-width: 920px; }
.lease-next {
  margin-top: 28px;
  background: #f3ead6;
  border: 1px solid #d4c4a0;
  border-radius: 12px;
  padding: 20px 22px;
}
.lease-next p { margin: 0 0 14px; color: var(--ink); }
.page-hero p + p { margin-top: 10px; }
.avail-lease {
  margin: 4px 0 0;
  font-size: 15px;
}
.avail-lease a { font-weight: 600; text-decoration: none; }
.avail-lease a:hover { text-decoration: underline; }


.lease-hero::before {
  height: 180px;
}
.lease-page .section {
  padding-top: 36px;
}
.lease-summary .fact-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.lease-summary .fact {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  padding: 16px 22px;
}
.lease-summary .fact:last-child {
  border-bottom: 0;
}
.fact-pets {
  background: #f3ead6;
  border-bottom: 1px solid #d0b98a;
  border-left: 5px solid var(--clay);
}
.lease-page .lease-summary .fact p {
  font-size: 16px;
  line-height: 1.65;
  color: #4a3f34;
}

@media (max-width: 480px) {
  .page-hero::before { height: 88px; margin-bottom: 20px; }
  .lease-hero::before { height: 120px; }
  .fact-pets { padding: 18px 16px; }
}


.faq-wrap { max-width: 820px; }
.faq-page .section { padding-top: 36px; }
.faq-list {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: 0; }
.faq-item h2 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 16px 22px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--blue-deep);
  line-height: 1.3;
}
.faq-q:hover { background: #f3ead6; }
.faq-q:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}
.faq-q::after {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.15s;
}
.faq-item.is-open .faq-q::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.faq-a {
  padding: 0 22px 18px;
}
.faq-a p {
  margin: 0 0 10px;
  color: #4a3f34;
  font-size: 16px;
  line-height: 1.65;
}
.faq-a p:last-child { margin-bottom: 0; }
.faq-a a { font-weight: 600; }
.faq-item.is-open .faq-q { padding-bottom: 8px; }

@media (max-width: 480px) {
  .faq-q { padding: 14px 16px; font-size: 18px; }
  .faq-a { padding: 0 16px 16px; }
}
