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

:root {
  --bg: #0f0f12;
  --bg-card: #18181d;
  --text: #e8e6e3;
  --text-muted: #9a9691;
  --accent: #c9a227;
  --accent-soft: rgba(201, 162, 39, 0.15);
  --border: #2a2a30;
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  background: rgba(15, 15, 18, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.25rem;
  gap: 3rem;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: #9a7b1a;
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links > li > a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.nav-links > li > a:hover {
  color: var(--accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  padding-left: 1.5rem;
  border-left: 1px solid var(--border);
}

.nav-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  box-sizing: border-box;
}

/* Täytetyn napin teksti tummaksi (nav-links a muuten tekee tekstin harmaaksi) */
.nav-cta .btn:not(.btn--outline) {
  color: #0d0d0f;
}

.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 7rem;
  position: relative;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
  display: inline-block;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
}

.hero h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero .highlight {
  color: var(--accent);
  display: block;
  margin-top: 0.15em;
}

.hero-desc {
  color: rgba(232, 230, 227, 0.85);
  font-size: 1.125rem;
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 2.25rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--accent);
  color: #0d0d0f;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201, 162, 39, 0.35);
  background: #d4af2a;
}

.btn--outline {
  background: transparent;
  color: #9a7b1a;
  border: 2px solid var(--accent);
}

.btn--outline:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.hero-visual {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(
    ellipse 70% 60% at 60% 50%,
    rgba(201, 162, 39, 0.08) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.grid-bg::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

/* ===== Section & cards ===== */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section--tight-top {
  padding-top: 0.75rem;
}

.page-hero {
  padding-top: 8rem;
}

.page-hero--myydaan {
  padding-bottom: 2rem;
}

/* Kohteen sivulla hero ja galleria ylempänä, vähemmän tyhjää */
.page-hero--compact {
  padding-top: 6.5rem;
  padding-bottom: 2rem;
}

.page-hero--compact + .section {
  padding-top: 2rem;
}

.page-hero--compact .hero-tag {
  display: inline-block;
  margin-top: 0.25rem;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Myydään-sivu: listauskortit */
.listing-cards {
  margin-top: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  align-items: stretch;
}

.listing-card {
  display: flex;
  flex-direction: column;
}

/* Myydään-sivun kortti, jossa käytetään yksittäistä placeholder-kuvaa
   (esim. Eberspächer): annetaan kuvalle sama väli kuin galleria-kuville */
.listing-card img.detail-gallery__main-img {
  display: block;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.listing-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.5rem;
  margin-bottom: 1rem;
}

/* Myydään-sivun ensimmäinen kortti: yksi kuva vähän isompana */
.listing-card--image-large .listing-gallery {
  grid-template-columns: 1fr;
}

.listing-card--image-large .listing-img-wrap {
  aspect-ratio: 4 / 3;
}

.listing-gallery .listing-img-wrap {
  margin: 0;
  aspect-ratio: auto;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card, #1a1a1c);
}

.listing-gallery .listing-img {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
}

/* Placeholder / contain-kuva: mahdolliset reunat kortin värillä */
.listing-card--image-large .listing-img-wrap {
  background: var(--bg-card, #1a1a1c);
}

.listing-gallery--detail {
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

/* Kohteen sivu: layout – kuva vasemmalla, teksti laatikossa oikealla */
.detail-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.detail-layout__media {
  flex: 3;
}

.detail-layout__info {
  flex: 2;
  padding: 1.75rem 1.5rem;
  border-radius: 12px;
  background: #131316;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

.detail-layout__info h2 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.detail-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.detail-specs li + li {
  margin-top: 0.25rem;
}

.detail-price {
  margin: 0 0 1rem 0;
  font-weight: 500;
}

.detail-layout__info-cta .btn {
  width: 100%;
  text-align: center;
}

@media (min-width: 800px) {
  .detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(260px, 2fr);
    align-items: flex-start;
  }
}

/* Kohteen sivu: iso pääkuva + pikkukuvat rullattavana rivinä */
.detail-gallery {
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: 0;
  margin-right: auto;
}

.detail-layout__media .detail-gallery + .section-desc {
  max-width: 560px;
  margin-left: 0;
  margin-right: auto;
  margin-top: 0;
}

.detail-gallery__main {
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-card, #1a1a1c);
}

.detail-gallery__main-wrap {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

/* Poista yleinen listing-img-wrapin alapohjemarginaali pääkuvasta,
   muuten sen alle jää kapea vaaleampi kaistale */
.detail-gallery__main .listing-img-wrap {
  margin-bottom: 0;
}

.detail-gallery__main-img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 12;
  object-fit: cover;
  object-position: 25% center;
  vertical-align: middle;
}

.detail-gallery__thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.detail-gallery__thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: none;
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 0.2s, opacity 0.2s;
}

.detail-gallery__thumb:hover {
  opacity: 0.9;
}

.detail-gallery__thumb.is-selected {
  border-color: var(--accent, #d4af2a);
  opacity: 1;
}

.detail-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 25% center;
  display: block;
}

.listing-img-wrap {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  margin: 0 0 1rem 0;
}

.listing-img {
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
  object-position: 25% center;
  border-radius: 8px;
  background: var(--bg);
  display: block;
}

/* Lightbox – kuva isommaksi */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.lightbox-img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: var(--accent);
  color: #0d0d0f;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: #d4af2a;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 3rem;
  height: 3rem;
  border: none;
  background: rgba(212, 175, 42, 0.9);
  color: #0d0d0f;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s, opacity 0.2s;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: #d4af2a;
}

.lightbox-prev.is-hidden,
.lightbox-next.is-hidden {
  visibility: hidden;
  pointer-events: none;
  opacity: 0.5;
}

.listing-card .listing-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.listing-card .card-price {
  margin-bottom: 0.75rem;
}

.listing-card .listing-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.55;
  flex: 1;
}

.listing-card .btn {
  margin-top: auto;
}

/* Kun viimeisellä rivillä on vain yksi kortti, keskitetään se saman kokoisena kuin muut */
/* Kun viimeinen kortti on yksin rivillään (1., 4., 7. …), keskitetään se */
.listing-cards .listing-card:last-of-type:nth-of-type(3n+1) {
  grid-column: 2 / 3;
}

.listing-note {
  margin-top: 2rem;
  font-size: 0.9rem;
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.section-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.section--alt {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 6rem 2rem;
  margin-bottom: 4rem;
}

.section-desc--wide {
  max-width: 640px;
}

.section--dark {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 6rem 2rem;
  margin-bottom: 4rem;
  text-align: center;
}

/* Myynti-ilmoituksen yhteystietolaatikko hieman kompaktimmaksi */
#detail-contact.section--dark {
  max-width: 680px;
  padding: 3.5rem 2rem;
  margin-top: 1rem;
}

.contact-info {
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-info a {
  color: var(--accent);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.card-icon {
  display: block;
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.card-price {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card-price-note {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--bg);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  color: var(--accent);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 640px;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-q {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.faq-a {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== Image placeholder ===== */
.img-placeholder {
  margin-top: 2rem;
  max-width: 400px;
  aspect-ratio: 16/10;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== SumUp Bookings (ensisijainen ajanvaraus) ===== */
.bookings-primary {
  margin-bottom: 1.5rem;
}

.btn--bookings {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  font-size: 1.05rem;
  background: linear-gradient(135deg, var(--accent) 0%, #2a7c5e 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn--bookings:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(42, 124, 94, 0.35);
}

.bookings-setup {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.bookings-setup code {
  background: rgba(255,255,255,0.08);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}

.bookings-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 1rem;
}

.bookings-divider::before,
.bookings-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.bookings-divider span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== Form (ajanvaraus) ===== */
.form {
  max-width: 520px;
  margin-top: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-privacy {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.form .btn {
  margin-top: 0.25rem;
}

.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 400;
}

.form-radio input {
  width: auto;
  margin: 0;
}

.form-error {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(200, 80, 80, 0.15);
  border: 1px solid rgba(200, 80, 80, 0.4);
  border-radius: 8px;
  color: #e8a0a0;
  font-size: 0.95rem;
}

.form-success {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(80, 180, 120, 0.2);
  border: 1px solid rgba(80, 180, 120, 0.4);
  border-radius: 8px;
  color: #90e0b0;
  font-size: 0.95rem;
}

/* ===== Contact grid, hours, map ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 1.5rem;
  text-align: left;
}

.section--dark .contact-grid {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contact-block .contact-info {
  margin-bottom: 1.5rem;
}

.hours {
  margin-bottom: 1.5rem;
}

.hours h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.hours p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.map-placeholder {
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: 12px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.map-placeholder p {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
}

/* ===== Scroll to top ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #0d0d0f;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  z-index: 50;
}

.scroll-top:hover {
  background: #d4af2a;
  color: #0d0d0f;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== Kiitosviesti (maksun jälkeen) ===== */
.kiitosviesti {
  max-width: 1100px;
  margin: 6rem auto 1rem;
  padding: 1rem 2rem;
  background: var(--accent-soft);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.kiitosviesti[hidden] {
  display: none !important;
}

.kiitosviesti p {
  margin: 0;
  color: var(--text);
  flex: 1;
}

.kiitosviesti-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
}

.kiitosviesti-close:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.1);
}

/* ===== Section reveal (animation) ===== */
.section--reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.section--reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}

/* ===== Mobiili: hamburger-valikko ===== */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 6px;
  flex-shrink: 0;
}

.nav-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 768px) {
  .header {
    padding: 0.75rem 1rem;
  }

  .nav {
    flex-wrap: wrap;
    gap: 0.75rem;
    min-height: 2.75rem;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    margin-top: 0.25rem;
  }

  .nav.is-open .nav-links {
    display: flex;
  }

  .nav-links > li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links > li:last-child {
    border-bottom: none;
  }

  .nav-links > li > a {
    display: block;
    padding: 0.75rem 0;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.75rem;
    padding-left: 0;
    border-left: none;
    flex-direction: column;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 5rem;
  }

  .hero-desc {
    margin-inline: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-visual {
    min-height: 200px;
    order: -1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section--dark .contact-grid {
    text-align: center;
  }

  .contact-block .contact-info,
  .hours {
    text-align: center;
  }

  .scroll-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.1rem;
  }
}
