:root {
  --ink: #172521;
  --ink-muted: #66726d;
  --cream: #fbf6ef;
  --warm: #efe2d2;
  --porcelain: #fffdf8;
  --forest: #183f37;
  --forest-2: #2c6257;
  --brass: #b77e4f;
  --mauve: #8c6f6a;
  --line: rgba(23, 37, 33, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 34, 30, 0.14);
  --shadow-dark: 0 28px 80px rgba(8, 20, 17, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  width: min(1240px, calc(100% - 48px));
  min-height: 76px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand,
.nav-links,
.top-actions,
.hero-actions,
.hero-details {
  display: flex;
  align-items: center;
}

.brand,
.nav-links a,
.quiet-link,
.call-button,
.button,
.visit-card.contact a {
  text-decoration: none;
}

.brand {
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--porcelain);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(24, 63, 55, 0.22);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.1;
}

.brand-text small {
  color: var(--ink-muted);
  font-size: 0.75rem;
  font-weight: 760;
}

.nav-links {
  justify-content: center;
  gap: 34px;
  color: var(--ink-muted);
  font-size: 0.94rem;
  font-weight: 780;
}

.top-actions {
  justify-content: flex-end;
  gap: 12px;
}

.quiet-link {
  color: var(--ink-muted);
  font-weight: 780;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.quiet-link:hover,
.quiet-link:focus-visible {
  color: var(--forest);
}

.call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 86px;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--porcelain);
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(24, 63, 55, 0.22);
}

.hero {
  position: relative;
  min-height: clamp(650px, 82vh, 830px);
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.hero picture,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero picture {
  z-index: -3;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 75% 45%, rgba(24, 63, 55, 0.02), rgba(9, 22, 19, 0.18) 38%, rgba(9, 22, 19, 0.68) 100%),
    linear-gradient(90deg, rgba(9, 22, 19, 0.88) 0%, rgba(9, 22, 19, 0.62) 40%, rgba(9, 22, 19, 0.18) 100%);
}

.hero-inner {
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-block: 72px;
}

.hero-copy {
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #eac098;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.65rem, 5.4vw, 5.85rem);
}

h2 {
  max-width: 15ch;
  font-size: clamp(2.05rem, 3.05vw, 3.45rem);
}

.section-title h2,
.expect-heading h2,
.story-panel h2,
.visit-title h2 {
  max-width: 660px;
}

h3 {
  font-size: 1.18rem;
}

.hero-line {
  margin: 20px 0 0;
  color: #f2d7be;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 780;
}

.hero-text {
  max-width: 46ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.35vw, 1.18rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 880;
}

.button.primary {
  background: var(--porcelain);
  color: var(--forest);
  box-shadow: var(--shadow-dark);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.hero-details {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-details span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 760;
  backdrop-filter: blur(12px);
}

.intro-section,
.expect-section,
.image-story,
.visit-section {
  padding-block: clamp(70px, 8vw, 108px);
}

.intro-section {
  background: linear-gradient(135deg, var(--porcelain), var(--cream));
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: end;
}

.intro-copy {
  max-width: 660px;
  color: var(--ink-muted);
  font-size: clamp(1.06rem, 1.35vw, 1.22rem);
}

.intro-copy p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 18px;
}

.expect-section {
  background: var(--cream);
}

.expect-heading {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.expect-card {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 48px rgba(20, 34, 30, 0.08);
}

.expect-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 44px;
  border: 1px solid rgba(183, 126, 79, 0.26);
  border-radius: 50%;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 900;
}

.expect-card h3 {
  margin-bottom: 12px;
}

.expect-card p {
  margin: 0;
  color: var(--ink-muted);
}

.image-story {
  background: var(--forest);
  color: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.story-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-dark);
}

.story-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.story-panel h2 {
  color: var(--white);
}

.story-panel p:not(.eyebrow) {
  max-width: 54ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.04rem, 1.3vw, 1.18rem);
}

.visit-section {
  background:
    linear-gradient(135deg, rgba(183, 126, 79, 0.18), rgba(255, 253, 248, 0.9)),
    var(--porcelain);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

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

.visit-card {
  display: grid;
  align-content: space-between;
  min-height: 310px;
  min-width: 0;
  padding: clamp(26px, 3.2vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.visit-card span {
  display: block;
  margin-bottom: 20px;
  color: var(--ink-muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

address {
  margin: 0 0 28px;
  font-style: normal;
  font-size: clamp(1.12rem, 1.55vw, 1.42rem);
  font-weight: 820;
  line-height: 1.34;
}

.button.map {
  width: fit-content;
  background: var(--forest);
  color: var(--porcelain);
}

.visit-card.contact {
  background: var(--ink);
  color: var(--white);
}

.visit-card.contact span {
  color: rgba(255, 255, 255, 0.58);
}

.visit-card.contact a {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.32rem, 1.9vw, 1.82rem);
  line-height: 1.08;
}

.visit-card.contact .email {
  margin-top: 24px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.86rem, 0.95vw, 1rem);
  font-weight: 760;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.site-footer {
  background: var(--porcelain);
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-block: 28px;
  font-size: 0.94rem;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 920px) {
  .topbar-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .intro-grid,
  .expect-heading,
  .story-grid,
  .visit-grid,
  .visit-cards {
    grid-template-columns: 1fr;
  }

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

  .expect-card {
    min-height: auto;
  }

  .story-image {
    order: 2;
  }
}

@media (max-width: 620px) {
  .container,
  .topbar-inner {
    width: min(100% - 32px, 1180px);
  }

  .topbar-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

  .brand-text small,
  .quiet-link {
    display: none;
  }

  .call-button {
    min-width: 72px;
    min-height: 38px;
    padding-inline: 14px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-inner {
    padding-block: 54px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 22, 19, 0.9), rgba(9, 22, 19, 0.56)),
      linear-gradient(0deg, rgba(9, 22, 19, 0.32), rgba(9, 22, 19, 0.04));
  }

  h1 {
    font-size: clamp(3.05rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(1.95rem, 9vw, 2.75rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .intro-section,
  .expect-section,
  .image-story,
  .visit-section {
    padding-block: 62px;
  }

  .expect-card,
  .visit-card {
    padding: 24px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
