:root {
  --ink: #15211f;
  --muted: #51615d;
  --paper: #f7f6f1;
  --panel: #fffdf8;
  --green: #0b5147;
  --green-deep: #083c35;
  --brass: #c89c4d;
  --wine: #a53d3d;
  --line: rgba(21, 33, 31, 0.16);
  --shadow: 0 24px 70px rgba(5, 30, 26, 0.18);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fffdf8;
  background: linear-gradient(180deg, rgba(4, 20, 18, 0.72), rgba(4, 20, 18, 0));
}

.brand,
.header-call,
.button,
.contact-card {
  -webkit-tap-highlight-color: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.58);
  border-radius: 50%;
  background: rgba(8, 60, 53, 0.78);
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 20px;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 253, 248, 0.5);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.12);
  backdrop-filter: blur(14px);
  font-weight: 750;
}

.header-call svg,
.button svg,
.flow svg,
.contact-card svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.2;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffdf8;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 42% center;
  transform: scale(1.015);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 24, 21, 0.9), rgba(4, 24, 21, 0.58) 42%, rgba(4, 24, 21, 0.12)),
    linear-gradient(0deg, rgba(4, 24, 21, 0.8), rgba(4, 24, 21, 0.04) 58%);
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 52px;
}

.eyebrow,
.small-label {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  width: min(760px, 100%);
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 9vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  width: min(660px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  max-width: 100%;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--brass);
  color: #18201c;
}

.button.secondary {
  border: 1px solid rgba(255, 253, 248, 0.54);
  color: #fffdf8;
  background: rgba(255, 253, 248, 0.1);
  backdrop-filter: blur(14px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.9);
  background: rgba(5, 28, 24, 0.35);
  backdrop-filter: blur(12px);
  font-size: 0.92rem;
}

.intro-band,
.flow,
.visual-band,
.gallery-section,
.contact-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.92fr) minmax(280px, 1.35fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
  padding: clamp(48px, 8vw, 88px) 0 34px;
}

.intro-copy p:last-child,
.visual-copy p:last-child,
.contact-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.item-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.74);
  font-weight: 760;
}

.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 20px 0 clamp(48px, 8vw, 92px);
}

.flow article {
  min-height: 176px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 38px rgba(18, 42, 37, 0.08);
}

.flow svg {
  width: 26px;
  height: 26px;
  color: var(--wine);
}

.flow strong {
  display: block;
  margin-top: 18px;
  font-size: 1.05rem;
}

.flow span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.visual-band {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.72fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  padding: 0 0 clamp(48px, 7vw, 84px);
}

.visual-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #102c28;
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.gallery-section {
  padding: 0 0 clamp(48px, 7vw, 84px);
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.gallery-heading p:last-child {
  width: min(520px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 38px rgba(18, 42, 37, 0.08);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 28%;
}

.gallery-grid figcaption {
  padding: 13px 14px 15px;
  color: var(--muted);
  font-weight: 750;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(300px, 1.28fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: start;
  padding: clamp(34px, 6vw, 64px);
  border-radius: 8px;
  color: #fffdf8;
  background: var(--green-deep);
  box-shadow: var(--shadow);
}

.contact-section .small-label {
  color: var(--brass);
}

.contact-copy p:last-child {
  color: rgba(255, 253, 248, 0.82);
}

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

.contact-card {
  display: grid;
  min-height: 122px;
  align-content: space-between;
  gap: 9px;
  padding: 18px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 253, 248, 0.13);
}

.contact-card svg {
  color: var(--brass);
}

.contact-card span {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.92rem;
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.contact-card.highlight {
  border-color: rgba(200, 156, 77, 0.58);
  background: rgba(200, 156, 77, 0.16);
}

.site-footer {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 26px 0 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 820px) {
  .site-header {
    padding: 14px 18px;
  }

  .header-call span {
    display: none;
  }

  .header-call {
    width: 42px;
    padding: 0;
  }

  .hero {
    min-height: 92svh;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 24, 21, 0.9), rgba(4, 24, 21, 0.64)),
      linear-gradient(0deg, rgba(4, 24, 21, 0.78), rgba(4, 24, 21, 0.08) 54%);
  }

  .hero-content {
    padding-top: 122px;
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .intro-band,
  .flow,
  .visual-band,
  .gallery-heading,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .gallery-heading {
    display: grid;
    align-items: start;
  }

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

  .gallery-grid img {
    aspect-ratio: 4 / 5;
  }

  .flow {
    gap: 12px;
  }

  .flow article {
    min-height: 148px;
  }

  .contact-section {
    padding: 28px 18px;
  }
}

@media (min-width: 821px) and (max-width: 1040px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    max-width: 145px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .trust-row span,
  .item-list span {
    width: 100%;
    justify-content: center;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
