:root {
  --leaf: #14532d;
  --leaf-2: #31572c;
  --moss: #6a994e;
  --sage: #dce8cf;
  --cream: #fbf8ef;
  --paper: #fffdf7;
  --rose: #c83f70;
  --rose-2: #f3c2d1;
  --clay: #b9815d;
  --gold: #d7a922;
  --ink: #1d2b20;
  --muted: #667462;
  --line: rgba(20, 83, 45, .16);
  --shadow: 0 24px 70px rgba(20, 83, 45, .14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
.btn,
.variant-card,
.shot-button,
.title-button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(200, 63, 112, .82);
  outline-offset: 3px;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(20, 83, 45, .12);
  background: rgba(251, 248, 239, .92);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-height: 48px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 34%, #f8c7d5 0 18%, #c83f70 19% 38%, transparent 39%),
    radial-gradient(circle at 62% 58%, #f4d35e 0 15%, transparent 16%),
    radial-gradient(circle at 38% 64%, #7aa95c 0 20%, #14532d 21%);
  border: 2px solid rgba(20, 83, 45, .18);
  box-shadow: 0 8px 24px rgba(20, 83, 45, .16);
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.brand-text span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.nav a {
  border-radius: 999px;
  color: var(--leaf);
  font-size: 14px;
  font-weight: 800;
  min-height: 44px;
  padding: 12px 13px;
  text-decoration: none;
}

.nav a:hover {
  background: rgba(20, 83, 45, .08);
}

.lang-select {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--ink);
  font-size: 20px;
  min-width: 60px;
  min-height: 44px;
  padding: 8px 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(20, 83, 45, .18);
  border-radius: 999px;
  min-height: 48px;
  padding: 13px 18px;
  background: #fff;
  color: var(--leaf);
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(20, 83, 45, .12);
}

.btn.primary {
  border-color: var(--leaf);
  background: var(--leaf);
  color: #fff;
}

.btn.rose {
  border-color: var(--rose);
  background: var(--rose);
  color: #fff;
}

.btn.ghost {
  background: rgba(255, 255, 255, .62);
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.section {
  padding: 82px 0;
}

.section-tight {
  padding: 54px 0;
}

.eyebrow {
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  margin: 0;
}

h1 {
  font-size: clamp(44px, 7vw, 86px);
  line-height: .95;
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

h3 {
  font-size: 24px;
  line-height: 1.12;
}

p {
  margin: 0;
}

.lead {
  color: #41513f;
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.45;
  overflow-wrap: break-word;
}

.muted {
  color: var(--muted);
}

.hero {
  overflow: hidden;
  min-height: calc(100dvh - 72px);
  display: grid;
  align-items: center;
  padding: 42px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  align-items: center;
  gap: 42px;
}

.hero-copy {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.meta-box,
.card,
.variant-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
}

.meta-box {
  padding: 14px;
}

.meta-box strong {
  color: var(--leaf);
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.meta-box span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  line-height: 1.35;
  margin-top: 5px;
}

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

.hero-img {
  width: 100%;
  height: 570px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  left: -20px;
  bottom: 32px;
  width: min(320px, 86%);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 22px 50px rgba(20, 83, 45, .18);
  padding: 20px;
}

.floating-note strong {
  color: var(--leaf);
  display: block;
  font-size: 18px;
}

.floating-note span {
  color: var(--muted);
  display: block;
  margin-top: 6px;
}

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

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

.card {
  padding: 24px;
}

.card h3 {
  margin-bottom: 12px;
}

.card p,
.card li {
  color: #4f5e4f;
}

.card ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.card li {
  position: relative;
  padding-left: 20px;
}

.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-line {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.feature-line strong {
  color: var(--leaf);
  display: block;
  font-size: 18px;
}

.feature-line span {
  color: var(--muted);
  display: block;
  margin-top: 5px;
}

.image-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.image-band img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
}

.info-panel {
  border-radius: 8px;
  background: var(--leaf);
  color: #fff;
  padding: 28px;
}

.info-panel h2,
.info-panel h3 {
  color: #fff;
}

.info-panel p,
.info-panel .muted {
  color: rgba(255, 255, 255, .8);
}

.hours {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(20, 83, 45, .14);
  padding-bottom: 10px;
}

.hour-row span:last-child {
  text-align: right;
}

.info-panel .hour-row {
  border-color: rgba(255, 255, 255, .2);
}

.contact-band {
  border-radius: 8px;
  background: linear-gradient(135deg, var(--leaf), #243c25);
  color: #fff;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.contact-band h2 {
  color: #fff;
}

.contact-band p {
  color: rgba(255, 255, 255, .8);
  margin-top: 10px;
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.fab-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  box-shadow: 0 20px 48px rgba(20, 83, 45, .22);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  font-weight: 800;
  transition: opacity .2s ease, transform .2s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.premium-body {
  background: #172519;
  color: #f8f2e5;
}

.premium-body .topbar {
  background: rgba(23, 37, 25, .88);
  border-color: rgba(255, 255, 255, .13);
}

.premium-body .brand-text strong,
.premium-body h1,
.premium-body h2,
.premium-body h3,
.premium-body .nav a {
  color: #fbf8ef;
}

.premium-body .brand-text span,
.premium-body .lead,
.premium-body .muted,
.premium-body .card p,
.premium-body .card li,
.premium-body .feature-line span {
  color: rgba(248, 242, 229, .72);
}

.premium-body .card,
.premium-body .meta-box,
.premium-body .variant-card {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
}

.premium-body .hour-row,
.premium-body .feature-line {
  border-color: rgba(255, 255, 255, .16);
}

.premium-body .section-rose {
  background: #f8ede2;
  color: var(--ink);
}

.premium-body .section-rose h2,
.premium-body .section-rose h3 {
  color: var(--leaf);
}

.premium-body .section-rose p,
.premium-body .section-rose li {
  color: #4f5e4f;
}

.product-body .hero {
  min-height: auto;
  padding-bottom: 28px;
}

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

.product-tile {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  padding: 20px;
}

.product-tile strong {
  color: var(--leaf);
  display: block;
  font-size: 18px;
}

.product-tile span {
  color: var(--muted);
  display: block;
  margin-top: 6px;
}

.dashboard-body {
  background:
    linear-gradient(180deg, rgba(220, 232, 207, .78), rgba(251, 248, 239, .94) 46%),
    var(--cream);
}

.dashboard-main {
  padding: 34px 0 54px;
}

.dashboard-head {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .72fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.dashboard-head h1 {
  font-size: clamp(34px, 5vw, 58px);
}

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

.variant-card {
  overflow: hidden;
  display: grid;
}

.shot-button,
.title-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 0;
  text-align: left;
}

.shot-button {
  width: 100%;
}

.shot {
  aspect-ratio: 16 / 10;
  background: #e7eadb;
  overflow: hidden;
}

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

.variant-card .card-body {
  padding: 18px;
}

.variant-card h3 {
  font-size: 25px;
}

.variant-card .actions {
  margin-top: 16px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 24, 16, .72);
}

.modal-panel {
  position: absolute;
  inset: 24px;
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 12px;
  background: #111b13;
  overflow: hidden;
  box-shadow: 0 36px 80px rgba(0, 0, 0, .35);
}

.modal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: #f9f6ec;
  padding: 10px 12px;
}

.modal-toolbar strong {
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.modal-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-icon,
.modal-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 83, 45, .18);
  border-radius: 999px;
  min-height: 40px;
  background: #fff;
  color: var(--leaf);
  font-weight: 850;
  text-decoration: none;
}

.modal-icon {
  width: 42px;
  padding: 0;
  font-size: 26px;
  line-height: 1;
}

.modal-pill {
  padding: 9px 14px;
  font-size: 14px;
}

.modal-pill[aria-pressed="true"] {
  background: var(--leaf);
  color: #fff;
}

.modal-stage {
  display: grid;
  background: #101810;
  padding: 18px;
}

.modal-frame {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
  background: #fff;
}

.modal-stage.mobile {
  place-items: center;
}

.modal-stage.mobile .modal-frame {
  width: min(390px, 100%);
  height: min(844px, 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .38);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

@media (max-width: 900px) {
  .wrap {
    width: min(100% - 28px, 720px);
  }

  .topbar-inner {
    min-height: 66px;
  }

  .nav a {
    display: none;
  }

  .hero,
  .section,
  .section-tight {
    padding: 42px 0;
  }

  .hero-grid,
  .split,
  .dashboard-head,
  .image-band,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual,
  .hero-img {
    min-height: 0;
    height: 390px;
  }

  .floating-note {
    left: 14px;
    bottom: 14px;
  }

  .grid-3,
  .grid-2,
  .dashboard-grid,
  .product-strip {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

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

  .fab-call {
    display: none;
  }

  .modal-panel {
    inset: 10px;
  }

  .modal-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal-tools {
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  h2 {
    font-size: 34px;
  }

  .brand-text strong {
    font-size: 19px;
  }

  .brand-text span {
    font-size: 11px;
  }

  .btn {
    width: 100%;
  }

  .lang-select {
    min-width: 56px;
  }

  .contact-band {
    padding: 28px;
  }

  .modal-pill {
    flex: 1 1 auto;
  }
}
