:root {
  --navy: #071624;
  --navy-2: #0d2032;
  --text: #102033;
  --muted: #697586;
  --gold: #b9854f;
  --gold-2: #d2a36d;
  --cream: #fbf8f2;
  --ivory: #fffdf9;
  --line: #eadfce;
  --soft: rgba(16, 32, 51, 0.08);
  --shadow: 0 24px 70px rgba(7, 22, 36, 0.10);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: linear-gradient(90deg, #f5f1e9 0%, #fffdf9 12%, #fffdf9 88%, #f5f1e9 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform 0.25s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 253, 249, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(234, 223, 206, 0.85);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 35px rgba(7, 22, 36, 0.08);
  background: rgba(255, 253, 249, 0.95);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-width: max-content;
}

.brand-mark {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 2.55rem;
  line-height: 1;
  letter-spacing: -0.12em;
  font-weight: 600;
}

.brand-text {
  display: grid;
  gap: 1px;
  border-left: 1px solid var(--line);
  padding-left: 14px;
  text-transform: uppercase;
}

.brand-text strong {
  font-family: var(--serif);
  letter-spacing: 0.04em;
  font-size: 1rem;
  color: var(--navy);
}

.brand-text small {
  font-size: 0.63rem;
  letter-spacing: 0.36em;
  color: var(--muted);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  margin-left: auto;
  font-size: 0.88rem;
  color: #26384a;
  font-weight: 600;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.header-cta {
  min-width: max-content;
  color: #fff;
  background: var(--navy);
  padding: 14px 20px;
  box-shadow: 0 14px 28px rgba(7, 22, 36, 0.13);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 0 0 18px;
}

.hero-grid {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: stretch;
  background: var(--ivory);
  overflow: hidden;
}

.hero-copy {
  padding: clamp(56px, 7vw, 88px) clamp(32px, 4vw, 48px) clamp(56px, 7vw, 88px) max(24px, calc((100vw - 1120px) / 2 + 24px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 800;
}

.eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.hero h1 {
  margin-top: 18px;
  font-family: var(--serif);
  color: var(--navy);
  font-size: clamp(3rem, 6vw, 5.05rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 600;
  max-width: 690px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  margin-top: 28px;
  color: #4f5f70;
  font-size: 1.03rem;
  max-width: 420px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  min-height: 50px;
  padding: 0 22px;
  font-size: 0.95rem;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 16px 35px rgba(7, 22, 36, 0.16);
}

.btn-primary:hover {
  background: #0d2032;
}

.btn-outline {
  background: rgba(255, 253, 249, 0.7);
  color: var(--navy);
  border-color: #cab79e;
}

.btn-outline:hover {
  border-color: var(--gold);
  box-shadow: 0 14px 30px rgba(185, 133, 79, 0.13);
}

.hero-visual {
  position: relative;
  min-height: 420px;
  background: var(--navy);
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 18%;
  z-index: 1;
  background: linear-gradient(90deg, var(--ivory) 0%, rgba(255, 253, 249, 0.52) 40%, rgba(255, 253, 249, 0) 100%);
  pointer-events: none;
}

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

section {
  scroll-margin-top: 92px;
}

.areas,
.features,
.testimonials {
  padding: clamp(36px, 5vw, 62px) 0;
}

.section-heading {
  margin-bottom: clamp(28px, 4vw, 46px);
}

.section-heading.center {
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading.center .eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(234, 223, 206, 0.72);
  border-bottom: 1px solid rgba(234, 223, 206, 0.72);
}

.area-card {
  text-align: center;
  padding: 24px clamp(18px, 2.2vw, 36px);
  border-right: 1px solid rgba(234, 223, 206, 0.72);
}

.area-card:last-child {
  border-right: 0;
}

.area-card svg,
.feature-icon svg {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  stroke: var(--gold);
  stroke-width: 1.55;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.area-card h3,
.feature-item h3 {
  font-family: var(--serif);
  font-size: 1.12rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.area-card p,
.feature-item p,
.testimonial-card p {
  color: #607082;
  font-size: 0.88rem;
  line-height: 1.65;
}

.about {
  padding: 10px 0 clamp(32px, 5vw, 58px);
}

.about-card {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(234, 223, 206, 0.74);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 253, 249, 0.98), rgba(248, 244, 237, 0.9));
  box-shadow: var(--shadow);
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  min-height: 190px;
  background: var(--navy);
}

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

.about-content h2 {
  margin-top: 6px;
  font-family: var(--serif);
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.about-content p {
  max-width: 650px;
  color: #566676;
  font-size: 0.98rem;
  line-height: 1.72;
  margin-top: 8px;
}

.metrics {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.metrics div {
  padding-right: 24px;
  border-right: 1px solid rgba(234, 223, 206, 0.95);
}

.metrics div + div {
  padding-left: 30px;
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1;
  color: var(--navy);
  font-weight: 600;
}

.metrics span {
  display: block;
  color: #6f7b87;
  margin-top: 4px;
  font-size: 0.88rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 10px clamp(20px, 3vw, 46px);
  border-right: 1px solid rgba(234, 223, 206, 0.85);
}

.feature-item:last-child {
  border-right: 0;
}

.feature-icon svg {
  margin: 0;
}

.testimonials {
  padding-top: 14px;
}

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

.testimonial-card {
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid rgba(234, 223, 206, 0.95);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 12px 38px rgba(7, 22, 36, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(7, 22, 36, 0.08);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.testimonial-card strong {
  display: block;
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--navy);
}

.footer {
  margin-top: 8px;
  background: radial-gradient(circle at top left, rgba(185, 133, 79, 0.16), transparent 34%), linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #d8e0e8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1.25fr 1.08fr;
  gap: clamp(28px, 5vw, 70px);
  padding: 46px 0 36px;
}

.footer .brand-text strong,
.footer .brand-text small {
  color: #fff;
}

.footer-brand p,
.footer p,
.footer li,
.footer a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.footer-brand p {
  max-width: 280px;
  margin-top: 16px;
}

.footer h3 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.footer li + li {
  margin-top: 8px;
}

.footer a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.76rem;
}

.btn-footer {
  margin-top: 18px;
  color: #fff;
  border-color: rgba(210, 163, 109, 0.8);
  padding-inline: 22px;
  background: rgba(255, 255, 255, 0.02);
}

.btn-footer:hover {
  border-color: var(--gold-2);
  background: rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-bottom span {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.24);
}

.section-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .header-cta {
    display: none;
  }

  .nav {
    gap: 20px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 56px 32px 36px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-visual img {
    object-position: 76% center;
  }

  .hero-visual::before {
    display: none;
  }

  .area-grid,
  .feature-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area-card:nth-child(2) {
    border-right: 0;
  }

  .area-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(234, 223, 206, 0.72);
  }

  .feature-item:nth-child(2) {
    border-right: 0;
  }

  .feature-item:nth-child(3) {
    grid-column: 1 / -1;
    border-right: 0;
    border-top: 1px solid rgba(234, 223, 206, 0.85);
    padding-top: 28px;
  }

  .about-card {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-height: 320px;
  }

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

@media (max-width: 780px) {
  .container {
    /* width: min(100% - 32px, 1120px); */
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-mark {
    font-size: 2.2rem;
  }

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

  .brand-text small {
    font-size: 0.56rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 70px 16px auto 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(234, 223, 206, 0.92);
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 24px 60px rgba(7, 22, 36, 0.12);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 16px;
    border-radius: 12px;
  }

  .nav a:hover {
    background: rgba(185, 133, 79, 0.08);
  }

  .nav a::after {
    display: none;
  }

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

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .area-grid,
  .feature-grid,
  .testimonial-grid,
  .metrics,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .area-card,
  .area-card:nth-child(2),
  .feature-item,
  .feature-item:nth-child(2),
  .feature-item:nth-child(3),
  .metrics div {
    border-right: 0;
  }

  .area-card,
  .area-card:nth-child(-n + 2),
  .feature-item,
  .feature-item:nth-child(3) {
    border-bottom: 1px solid rgba(234, 223, 206, 0.72);
  }

  .area-card:last-child,
  .feature-item:last-child {
    border-bottom: 0;
  }

  .metrics {
    margin-top: 22px;
    border-top: 1px solid rgba(234, 223, 206, 0.95);
  }

  .metrics div,
  .metrics div + div {
    padding: 18px 0;
    border-bottom: 1px solid rgba(234, 223, 206, 0.95);
  }

  .metrics div:last-child {
    border-bottom: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 500px) {
  .hero-copy {
    padding: 44px 22px 32px;
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-visual img {
    object-position: 78% center;
  }

  .about-card {
    padding: 18px;
  }

  .feature-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-icon svg {
    margin: 0 auto;
  }
}
