:root {
  --ink: #101725;
  --navy: #18243c;
  --blue: #2f5f91;
  --sand: #c69a63;
  --paper: #f7f5ef;
  --white: #ffffff;
  --muted: #667085;
  --line: rgba(16, 23, 37, 0.12);
  --radius-lg: 32px;
  --radius-md: 20px;
  --shadow: 0 22px 70px rgba(28, 40, 65, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(247, 245, 239, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--sand);
}

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

.nav-links a {
  text-decoration: none;
  color: #344054;
  font-size: 0.94rem;
  font-weight: 650;
}

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

.nav-links a[aria-current="page"] {
  color: var(--blue);
}

.hero {
  padding: 74px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(38px, 6vw, 88px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-copy {
  max-width: 580px;
  margin-bottom: 32px;
  color: #475467;
  font-size: 1.08rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 750;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(24, 36, 60, 0.16);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.button.light {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.arrow {
  font-size: 1.05rem;
  line-height: 1;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.hero-photo {
  position: absolute;
  inset: 0 0 56px 46px;
  overflow: hidden;
  border-radius: 180px 180px 36px 36px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.hero-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(285px, 65%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 20px 50px rgba(16, 23, 37, 0.22);
}

.hero-card .number {
  display: block;
  margin-bottom: 3px;
  color: #dfb782;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  line-height: 1;
}

.hero-card p {
  margin-bottom: 0;
  color: #d6dbe5;
  font-size: 0.9rem;
}

.section {
  padding: 100px 0;
}

.subpage-main {
  min-height: calc(100vh - 189px);
  display: flex;
  align-items: center;
  padding: 72px 0 96px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 40px;
  margin-bottom: 46px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-heading p:not(.eyebrow) {
  max-width: 640px;
  margin: 8px 0 0;
  color: #475467;
  font-size: 1.05rem;
}

.about-panel {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--white);
}

.about-copy {
  padding: clamp(38px, 6vw, 76px);
}

.about-copy h2,
.about-copy .subpage-title {
  max-width: 620px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4vw, 4.25rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.about-copy p {
  max-width: 650px;
  color: #d6dbe5;
}

.about-meta {
  display: grid;
  align-content: center;
  gap: 0;
  padding: 36px clamp(30px, 5vw, 62px);
  background: #21304f;
}

.meta-row {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.meta-row:last-child {
  border-bottom: 0;
}

.meta-label {
  display: block;
  margin-bottom: 6px;
  color: #9eabc1;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.meta-value {
  font-size: 1rem;
  font-weight: 650;
}

.products {
  background: var(--white);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fbfbfa;
}

.product-image {
  position: relative;
  aspect-ratio: 1.12 / 1;
  overflow: hidden;
  background: #f1f1ee;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 34px;
  transition: transform 280ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.025);
}

.product-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(24, 36, 60, 0.92);
  color: white;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-content {
  padding: 30px;
}

.product-content h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.product-content p {
  min-height: 52px;
  margin-bottom: 24px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.store-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
  padding: 34px 38px;
  border-radius: var(--radius-md);
  background: #edf2f7;
}

.store-callout h3 {
  margin-bottom: 5px;
  font-size: 1.24rem;
}

.store-callout p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact {
  padding-top: 100px;
  padding-bottom: 100px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: white;
}

.contact-intro {
  padding: clamp(40px, 6vw, 76px);
}

.contact-intro h2,
.contact-intro .subpage-title {
  max-width: 520px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.contact-intro p {
  max-width: 500px;
  margin-bottom: 0;
  color: #cdd5e2;
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 64px);
  background: var(--sand);
  color: #1b1b1b;
}

.contact-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(16, 23, 37, 0.18);
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-item .meta-label {
  color: rgba(16, 23, 37, 0.62);
}

.contact-item a {
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 750;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-company strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--blue);
}

.legal-main {
  padding: 72px 0 110px;
}

.legal-header {
  max-width: 800px;
  margin-bottom: 56px;
}

.legal-header h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 5.2rem);
}

.legal-header p {
  color: var(--muted);
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: clamp(36px, 8vw, 100px);
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 108px;
  padding-top: 18px;
  border-top: 2px solid var(--sand);
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-content section {
  padding: 0 0 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.legal-content p,
.legal-content li {
  color: #475467;
}

.legal-content ul {
  padding-left: 20px;
}

:focus-visible {
  outline: 3px solid rgba(47, 95, 145, 0.35);
  outline-offset: 4px;
}

@media (max-width: 860px) {
  .hero-grid,
  .section-heading,
  .about-panel,
  .contact-panel,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 50px;
  }

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

  .hero-photo {
    left: 36px;
  }

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

  .product-content p {
    min-height: auto;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    min-height: 68px;
  }

  .brand {
    font-size: 0.88rem;
  }

  .nav-links {
    gap: 13px;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.25rem);
  }

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

  .hero-photo {
    inset: 0 0 46px 20px;
    border-radius: 110px 110px 26px 26px;
  }

  .hero-card {
    padding: 18px;
  }

  .section {
    padding: 72px 0;
  }

  .about-copy,
  .about-meta,
  .contact-intro,
  .contact-details {
    padding: 32px 24px;
  }

  .product-content {
    padding: 24px;
  }

  .product-image img {
    padding: 22px;
  }

  .store-callout {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
