:root {
  --ink: #17211d;
  --muted: #66726d;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #dde2dd;
  --forest: #244c3b;
  --leaf: #6b8e52;
  --clay: #b65f3a;
  --gold: #d6a84c;
  --shadow: 0 18px 50px rgba(23, 33, 29, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 230px;
  text-decoration: none;
}

.brand-mark {
  width: 58px;
  height: auto;
}

.brand-wordmark {
  width: min(290px, 42vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: 999px;
  padding: 9px 13px;
  color: #33413b;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--forest);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(560px, 78vh, 760px);
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: clamp(32px, 6vw, 80px);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(10, 18, 15, 0.78), rgba(10, 18, 15, 0.34) 48%, rgba(10, 18, 15, 0.12));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1000ms ease, transform 6000ms ease;
}

.hero-media img.is-visible {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  width: min(720px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.content-section h2,
.intro-section h2,
.cta-band h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 6vw, 5.7rem);
}

.hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 28px;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  background: var(--clay);
  color: #fff;
  padding: 13px 20px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  filter: brightness(0.95);
}

.button-light {
  background: #fff;
  color: var(--forest);
}

.intro-section,
.content-section,
.contact-layout,
.services-grid,
.detail-list,
.timeline,
.gallery-strip,
.cta-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  padding: 72px 0;
}

.section-copy h2,
.content-section h2,
.contact-form h2,
.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-copy p:not(.eyebrow),
.content-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.quick-contact {
  align-self: center;
  display: grid;
  gap: 10px;
  border-left: 4px solid var(--leaf);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.quick-contact span {
  color: var(--muted);
  font-weight: 700;
}

.quick-contact a {
  color: var(--forest);
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-bottom: 76px;
}

.service-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(23, 33, 29, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card h2,
.detail-list h3,
.timeline h3 {
  margin: 0 0 8px;
  line-height: 1.2;
}

.service-card p,
.detail-list p,
.timeline p {
  color: var(--muted);
}

.service-card a {
  color: var(--clay);
  font-weight: 800;
  text-decoration: none;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 78px;
  border-radius: var(--radius);
  background: var(--forest);
  color: #fff;
  padding: clamp(28px, 5vw, 52px);
}

.content-section {
  padding: 76px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.feature-image {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.feature-image.is-room-photo {
  object-position: 50% 58%;
}

.detail-list,
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 76px;
}

.detail-list article,
.timeline article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.timeline span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--clay);
  font-size: 1.8rem;
  font-weight: 900;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 16px;
  padding-bottom: 76px;
}

.gallery-strip img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: zoom-in;
}

.contact-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
  padding: 76px 0;
}

.contact-card,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(23, 33, 29, 0.08);
  padding: clamp(24px, 4vw, 38px);
}

.contact-card {
  align-self: start;
}

.contact-card h2 {
  margin: 0 0 18px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  overflow-wrap: anywhere;
}

address {
  font-style: normal;
}

.contact-card a {
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
  color: #34423d;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfd7d1;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

input:focus,
textarea:focus {
  border-color: var(--leaf);
  outline: 3px solid rgba(107, 142, 82, 0.18);
}

textarea {
  resize: vertical;
}

.checkbox {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  color: var(--muted);
  font-weight: 600;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.is-hidden {
  position: absolute;
  left: -9999px;
}

.form-message {
  margin: 0 0 20px;
  border-radius: var(--radius);
  padding: 14px 16px;
  font-weight: 800;
}

.form-message.success {
  background: #e7f3ea;
  color: #245134;
}

.form-message.error {
  background: #fbe9e2;
  color: #81391d;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(12, 18, 15, 0.88);
  padding: clamp(18px, 4vw, 52px);
}

.image-modal.is-open {
  display: flex;
}

.image-modal img {
  max-width: min(1200px, 100%);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.image-modal-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.legal {
  max-width: 860px;
}

.legal h2 {
  margin-top: 36px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 5vw, 72px);
  background: #121b17;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer strong {
  display: block;
  color: #fff;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 74px;
  }

  .brand-mark {
    width: 48px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 10px;
  }

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

  .site-nav a {
    border-radius: var(--radius);
  }

  .intro-section,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .detail-list,
  .timeline {
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip img {
    height: 240px;
  }

  .site-footer,
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-mark {
    display: block;
    flex: 0 0 auto;
    width: 42px;
  }

  .brand-wordmark {
    width: min(220px, calc(100vw - 128px));
  }

  .hero {
    min-height: 560px;
    padding: 28px 20px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.5rem);
  }

  .hero p:not(.eyebrow) {
    font-size: 1rem;
  }

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

  .contact-layout,
  .intro-section,
  .content-section,
  .services-grid,
  .detail-list,
  .timeline,
  .gallery-strip,
  .cta-band {
    width: min(100% - 28px, 1180px);
  }

  .contact-card,
  .contact-form {
    padding: 22px;
  }

  .split {
    gap: 22px;
  }

  .feature-image {
    aspect-ratio: 4 / 3;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}
