:root {
  --ink: #251f1d;
  --muted: #6c615d;
  --paper: #fffaf6;
  --shell: #f5e9e0;
  --blush: #df8e92;
  --teal: #147c7d;
  --leaf: #506f3a;
  --gold: #c48735;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(49, 33, 26, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 246, 0.92);
  border-bottom: 1px solid rgba(37, 31, 29, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 16px rgba(37, 31, 29, 0.12);
}

.brand strong,
h1,
h2,
h3 {
  font-family: Fraunces, Georgia, serif;
}

.brand strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.05;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
  background: var(--shell);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(37, 31, 29, 0.16);
  border-radius: 50%;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  min-height: calc(100svh - 120px);
  padding: clamp(30px, 5vw, 58px) clamp(18px, 5vw, 72px) 38px;
  overflow: hidden;
}

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

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

h1 {
  margin: 0;
  font-size: clamp(3rem, 5.5vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.4vw, 1.24rem);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(37, 31, 29, 0.16);
}

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

.hero-media {
  position: relative;
  min-height: 570px;
}

.hero-main,
.hero-inset {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-main {
  inset: 0 7% 10% 0;
  width: 88%;
  height: 82%;
  border-radius: 8px;
}

.hero-inset {
  right: 0;
  bottom: 0;
  width: 45%;
  aspect-ratio: 1;
  border: 10px solid var(--paper);
  border-radius: 8px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(37, 31, 29, 0.1);
  border-bottom: 1px solid rgba(37, 31, 29, 0.1);
  background: var(--ink);
  color: var(--white);
}

.trust-strip span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  font-weight: 800;
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 6vw, 88px);
  align-items: start;
  background: var(--shell);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro p:last-child,
.order-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.product-section {
  background: var(--paper);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(37, 31, 29, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 38px rgba(49, 33, 26, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
}

.product-card div {
  padding: 22px;
}

.product-card h3 {
  margin: 0 0 9px;
  font-size: 1.5rem;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-card.featured {
  grid-column: span 2;
}

.product-card.featured img {
  aspect-ratio: 2;
}

.product-card.wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
}

.product-card.wide img {
  height: 100%;
  aspect-ratio: auto;
}

.product-card.wide div {
  align-self: center;
}

.order-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), #345f47 62%, var(--gold));
}

.order-panel .eyebrow,
.order-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.order-panel h2 {
  margin-bottom: 22px;
}

.contact-card {
  flex-direction: column;
  align-items: stretch;
  margin: 0;
  padding: 24px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-logo {
  width: 116px;
  height: 116px;
  margin: 0 auto 6px;
  border-radius: 50%;
  object-fit: cover;
}

.phone-link {
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.button.full {
  width: 100%;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid rgba(37, 31, 29, 0.1);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.maker-banner {
  padding: 12px clamp(18px, 5vw, 72px);
  background: #05445e;
  color: #ffffff;
}

.maker-banner a {
  width: min(100%, 920px);
  min-height: 46px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.maker-banner strong {
  color: #75e6da;
}

.maker-badge {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ff7f66;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
}

.maker-note {
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--white);
    border: 1px solid rgba(37, 31, 29, 0.1);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: var(--radius);
  }

  .hero,
  .intro,
  .order-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 440px;
  }

  .trust-strip,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card.featured,
  .product-card.wide {
    grid-column: span 2;
  }

  .order-panel {
    background: var(--teal);
  }
}

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

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.5rem);
  }

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

  .hero-media {
    min-height: 350px;
  }

  .hero-main {
    width: 100%;
    height: 76%;
  }

  .hero-inset {
    width: 52%;
    border-width: 7px;
  }

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

  .trust-strip span {
    min-height: 58px;
  }

  .product-card.featured,
  .product-card.wide {
    grid-column: auto;
  }

  .product-card.wide {
    display: flex;
  }

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

  .maker-banner a {
    flex-direction: column;
    gap: 6px;
  }
}
