:root {
  --bg: #f7f4ee;
  --bg-2: #fbfaf7;
  --paper: #fffdf9;
  --text: #151515;
  --muted: #6e675e;
  --line: rgba(21, 21, 21, 0.08);
  --warm: #cfa45f;
  --warm-deep: #b98a42;
  --navy: #152338;
  --navy-soft: #223852;
  --shadow: 0 28px 80px rgba(45, 33, 18, 0.12);
  --container: min(1280px, calc(100vw - 56px));
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(207, 164, 95, 0.14), transparent 28%),
    linear-gradient(180deg, #f9f7f2 0%, #f6f2eb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0, transparent 94px, rgba(17, 17, 17, 0.03) 94px, rgba(17, 17, 17, 0.03) 95px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 32%);
  opacity: 0.75;
  z-index: -1;
}

.page-shell {
  padding: 22px 0 38px;
}

.site-header,
.section,
.site-footer,
.hero {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 36px rgba(41, 30, 18, 0.08);
}

.brand,
.site-nav a,
.button-link {
  text-decoration: none;
}

.brand-mark,
.footer-logo {
  display: block;
  width: 168px;
  height: 52px;
  object-fit: cover;
  object-position: center;
  clip-path: inset(18% 6% 18% 6%);
  transform: scale(1.32);
  transform-origin: left center;
}

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

.site-nav a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--warm-deep);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.34fr;
  gap: 0;
  margin-top: 18px;
  min-height: 860px;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 42px 0 0 42px;
  min-height: 860px;
}

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

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 19, 31, 0.06), rgba(16, 22, 29, 0.08)),
    linear-gradient(90deg, rgba(255, 255, 255, 0) 55%, rgba(255, 251, 244, 0.16) 100%);
}

.hero-side-panel {
  position: relative;
  overflow: hidden;
  padding: 28px 28px 34px;
  border-radius: 0 42px 42px 0;
  background:
    linear-gradient(180deg, rgba(207, 164, 95, 0.97), rgba(194, 150, 84, 0.95)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 32%);
  color: white;
}

.hero-side-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.18), transparent 16%),
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.18), transparent 10%),
    repeating-radial-gradient(circle at 90% 6%, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 18px);
  opacity: 0.6;
}

.hero-card,
.hero-side-panel > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--warm);
  font-weight: 800;
}

.hero-side-panel .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.hero-side-panel h2,
.hero-card h1,
.story-copy h2,
.specialties-intro h2,
.panoramic-copy h2 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.hero-side-panel h2 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.08;
}

.side-preview {
  margin-top: 34px;
  overflow: hidden;
  border-radius: 0;
}

.side-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
}

.card {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  right: 150px;
  bottom: 60px;
  width: min(430px, calc(100% - 180px));
  padding: 38px 40px;
  border-radius: 0 0 0 0;
  z-index: 3;
}

.hero-card h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.15rem);
  line-height: 0.95;
  max-width: 8.2ch;
}

.hero-copy,
.story-copy p,
.specialty p,
.mini-feature p,
.panoramic-copy p {
  color: var(--muted);
  line-height: 1.86;
}

.hero-copy {
  margin: 20px 0 0;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: var(--warm);
  color: white;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(185, 138, 66, 0.2);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.button-link:hover {
  transform: translateY(-2px);
  background: var(--warm-deep);
  box-shadow: 0 20px 40px rgba(185, 138, 66, 0.26);
}

.button-link-light {
  background: white;
  border-color: rgba(191, 143, 71, 0.24);
  color: var(--text);
  box-shadow: 0 12px 26px rgba(45, 33, 18, 0.08);
}

.button-link-light:hover {
  color: white;
  border-color: transparent;
}

.button-link-on-dark {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
  box-shadow: none;
}

.button-link-on-dark:hover {
  background: rgba(255, 255, 255, 0.26);
}

.section {
  margin-top: 66px;
}

.center-strip {
  padding-top: 8px;
}

.center-strip-label {
  margin-bottom: 22px;
  color: var(--warm-deep);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.center-strip-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.mini-feature {
  padding: 18px 12px 18px 0;
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, opacity 220ms ease;
}

.mini-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(191, 143, 71, 0.5);
}

.mini-feature span,
.specialty-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(191, 143, 71, 0.34);
  color: var(--warm-deep);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.mini-feature h3,
.specialty h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.split-story {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}

.story-visual {
  position: relative;
  min-height: 660px;
}

.story-pattern {
  position: absolute;
  left: -10px;
  top: 20px;
  width: 270px;
  height: 340px;
  background:
    radial-gradient(circle at 20px 20px, rgba(255, 255, 255, 0.66) 0 4px, transparent 4px),
    radial-gradient(circle at 60px 48px, rgba(255, 255, 255, 0.66) 0 4px, transparent 4px),
    linear-gradient(135deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02));
  opacity: 0.7;
  border-radius: 0 0 0 0;
}

.story-main-image {
  position: absolute;
  left: 84px;
  top: 92px;
  width: 66%;
  max-width: 430px;
  height: 470px;
  object-fit: cover;
  box-shadow: 0 24px 50px rgba(45, 33, 18, 0.12);
}

.story-badge {
  position: absolute;
  left: 0;
  bottom: 36px;
  width: 78%;
  max-width: 500px;
  display: grid;
  grid-template-columns: 112px 1fr;
  background: var(--warm);
  color: white;
  box-shadow: 0 22px 46px rgba(110, 79, 35, 0.18);
}

.story-badge span {
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.story-badge p {
  margin: 0;
  padding: 28px 26px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.story-copy {
  padding-top: 30px;
}

.story-copy h2,
.specialties-intro h2,
.panoramic-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.06;
}

.story-copy p {
  margin: 22px 0 0;
  max-width: 50ch;
}

.specialties {
  padding-top: 18px;
}

.specialties-intro {
  max-width: 620px;
  margin-bottom: 34px;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.specialty {
  padding: 10px 4px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.specialty:hover {
  transform: translateY(-6px);
}

.specialty.muted {
  opacity: 0.78;
}

.panoramic {
  margin-top: 78px;
  display: grid;
  grid-template-columns: minmax(320px, 430px) 1fr;
  align-items: stretch;
}

.panoramic-copy {
  position: relative;
  width: 100%;
  padding: 34px 36px;
  background:
    linear-gradient(180deg, rgba(207, 164, 95, 0.95), rgba(194, 150, 84, 0.95)),
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.15), transparent 30%);
  color: white;
  z-index: 1;
}

.panoramic-copy .eyebrow,
.panoramic-copy p,
.panoramic-copy .button-link {
  color: white;
}

.panoramic-media {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  height: 100%;
}

.panoramic-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.site-footer {
  margin-top: 42px;
  padding-bottom: 18px;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(21, 21, 21, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image-wrap {
    border-radius: 36px 36px 0 0;
    min-height: 640px;
  }

  .hero-side-panel {
    border-radius: 0 0 36px 36px;
  }

  .hero-card {
    right: 28px;
    bottom: 34px;
    width: min(480px, calc(100% - 56px));
  }

  .center-strip-items,
  .specialty-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-story {
    grid-template-columns: 1fr;
  }

  .panoramic-copy {
    width: auto;
    margin-bottom: 0;
  }

  .panoramic {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 24px, 100%);
  }

  .page-shell {
    padding-top: 12px;
  }

  .site-header {
    top: 10px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
    gap: 14px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .brand-mark,
  .footer-logo {
    width: 150px;
    height: 48px;
  }

  .hero-image-wrap {
    min-height: 440px;
    border-radius: 28px 28px 0 0;
  }

  .hero-side-panel {
    border-radius: 0 0 28px 28px;
    padding: 22px 20px 24px;
  }

  .hero-card {
    position: static;
    width: auto;
    margin: -24px 16px 0;
    padding: 24px 22px;
  }

  .hero-card h1 {
    max-width: none;
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .center-strip-items,
  .specialty-grid {
    grid-template-columns: 1fr;
  }

  .story-visual {
    min-height: 530px;
  }

  .story-pattern {
    width: 180px;
    height: 220px;
  }

  .story-main-image {
    left: 36px;
    top: 70px;
    width: calc(100% - 72px);
    max-width: none;
    height: 320px;
  }

  .story-badge {
    width: calc(100% - 18px);
    max-width: none;
    bottom: 8px;
    grid-template-columns: 88px 1fr;
  }

  .story-badge p {
    padding: 22px 18px;
  }

  .panoramic-media,
  .panoramic-media img {
    min-height: 360px;
    height: 360px;
  }
}
