:root {
  --ink: #202a31;
  --muted: #5d6870;
  --accent: #244a3d;
  --accent-light: #e9f0ed;
  --background: #ffffff;
  --soft-background: #f5f7f6;
  --border: #d8dfdc;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:focus-visible {
  outline: 3px solid #b46a24;
  outline-offset: 3px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--background);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 0 0 0.55rem 0.55rem;
  color: white;
  background: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-120%);
}

.skip-link:focus {
  transform: translateY(0);
}

.narrow {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
}

.header-content,
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 1rem;
}

.brand {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8faf9, #eaf1ee);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.15;
}

h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2.6rem, 6vw, 5rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  letter-spacing: -0.025em;
}

.summary {
  font-size: 1.35rem;
  font-weight: 800;
}

.tagline,
.intro {
  color: var(--muted);
  font-size: 1.08rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--accent);
  border-radius: 0.55rem;
  color: white;
  background: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.button-small {
  min-height: 40px;
  padding: 0.5rem 0.85rem;
}

.text-link {
  color: var(--accent);
  font-weight: 800;
}

.hero-photo {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 2rem;
  border: 2px dashed #9eafa8;
  border-radius: 1rem;
  color: #486157;
  background: #dfe9e5;
  text-align: center;
}

.hero-photo-image {
  display: block;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--border);
}

.hero-photo-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  max-height: 620px;
  object-fit: cover;
}

.property-gallery-section {
  background: var(--soft-background);
}

.property-gallery {
  margin-top: 2rem;
}

.gallery-stage {
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--ink);
  box-shadow: 0 18px 50px rgba(32, 42, 49, 0.1);
}

.gallery-active-image {
  display: block;
  width: 100%;
  height: min(72vh, 760px);
  object-fit: contain;
}

.gallery-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: white;
}

.gallery-controls button {
  min-height: 48px;
  padding: 0.7rem 1rem;
  border: 0;
  color: var(--accent);
  background: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.gallery-controls button:first-child {
  text-align: left;
}

.gallery-controls button:last-child {
  text-align: right;
}

.gallery-counter {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.gallery-thumbnails {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  margin-top: 1rem;
  padding: 0.5rem 0.5rem 0.85rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.gallery-thumbnail {
  flex: 0 0 90px;
  aspect-ratio: 1;
  align-self: center;
  overflow: hidden;
  padding: 0;
  border: 3px solid transparent;
  border-radius: 0.65rem;
  background: white;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.gallery-thumbnail.is-active {
  border-color: var(--accent);
  box-shadow: 0 6px 16px rgba(32, 42, 49, 0.16);
  transform: scale(1.06);
}

.gallery-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

@media (hover: hover) {
  .gallery-thumbnail:hover {
    box-shadow: 0 6px 16px rgba(32, 42, 49, 0.14);
    transform: translateY(-2px);
  }

  .gallery-thumbnail.is-active:hover {
    transform: translateY(-2px) scale(1.06);
  }
}

.section {
  padding: 4.5rem 0;
}

.section-muted {
  background: var(--soft-background);
}

.section-accent {
  background: var(--accent-light);
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.facts article,
.card {
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: white;
}

.facts strong,
.facts span {
  display: block;
}

.facts strong {
  font-size: 1.35rem;
}

.facts span {
  color: var(--muted);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.card ul,
.steps {
  padding-left: 1.3rem;
}

.interest-callout {
  margin-top: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: white;
  box-shadow: 0 12px 32px rgba(32, 42, 49, 0.08);
  text-align: center;
}

.interest-callout p {
  margin-top: 0;
  color: var(--muted);
}

.interest-callout .button {
  margin-top: 0.5rem;
}

footer {
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

footer p {
  margin: 0.2rem 0;
  color: var(--muted);
}

@media (max-width: 760px) {
  .hero {
    padding: 3.5rem 0;
  }

  .hero-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .facts {
    grid-template-columns: 1fr 1fr;
  }

  .hero-photo {
    min-height: 260px;
  }

  .hero-photo-image img {
    min-height: 0;
    max-height: none;
    aspect-ratio: 3 / 4;
  }

  .gallery-active-image {
    height: min(68vh, 640px);
  }

  .gallery-thumbnail {
    flex-basis: 88px;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.25rem 0;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.menu-toggle {
  display: none;
  min-height: 44px;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--accent);
  border-radius: 0.55rem;
  color: var(--accent);
  background: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.main-nav a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.main-nav .button {
  color: white;
}

.business-hero {
  min-height: 620px;
  display: flex;
  align-items: center;
}

.brand-panel {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 18px 50px rgba(32, 42, 49, 0.08);
}

.brand-panel-label,
.availability {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: white;
}

.value-card h3 {
  margin-top: 0;
}

.value-card p {
  color: var(--muted);
}

.rental-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  margin-top: 2rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: white;
  box-shadow: 0 18px 50px rgba(32, 42, 49, 0.08);
}

.rental-card-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.rental-card-content {
  padding: 2rem;
}

.rental-card-content h3 {
  margin: 0.3rem 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.rental-summary {
  font-size: 1.1rem;
  font-weight: 800;
}

.rental-highlights {
  margin: 1.5rem 0;
  padding-left: 1.2rem;
}

.process-note {
  margin-top: 2rem;
  padding: 1rem;
  border-left: 4px solid var(--accent);
  background: var(--soft-background);
}

.center {
  text-align: center;
}

@media (max-width: 860px) {
  .header-content {
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-top: 0;
    border-radius: 0 0 0.85rem 0.85rem;
    background: white;
    box-shadow: 0 18px 50px rgba(32, 42, 49, 0.12);
  }

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

  .main-nav a {
    padding: 0.65rem 0.75rem;
  }

  .main-nav .button {
    margin-top: 0.25rem;
  }

  .value-grid,
  .rental-card {
    grid-template-columns: 1fr;
  }

  .business-hero {
    min-height: auto;
  }

  .rental-card-photo {
    min-height: 280px;
    max-height: 560px;
  }
}
