:root {
  --leaf: #14532d;
  --leaf-2: #31572c;
  --moss: #6a994e;
  --sage: #dce8cf;
  --cream: #fbf8ef;
  --paper: #fffdf7;
  --rose: #c83f70;
  --rose-2: #e9a7bb;
  --gold: #d7a922;
  --ink: #1e2d21;
  --muted: #657263;
  --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;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
.btn,
.card-link,
.preview-button,
.variant-card {
  cursor: pointer;
}

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

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

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

.topbar-inner {
  min-height: 74px;
  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% 35%, #f8c7d5 0 18%, #c83f70 19% 39%, #f4d35e 40% 55%, #7aa95c 56% 72%, #14532d 73%);
  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: 21px;
  letter-spacing: 0;
}

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

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

.nav a {
  border-radius: 999px;
  color: var(--leaf);
  font-size: 14px;
  font-weight: 800;
  min-height: 44px;
  padding: 12px 14px;
  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, .72);
  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, .16);
  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, .58);
}

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

.icon.fill {
  fill: currentColor;
  stroke: none;
}

.section {
  padding: 86px 0;
}

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

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

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

h1 {
  font-size: clamp(46px, 8vw, 92px);
  line-height: .93;
}

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

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

p {
  margin: 0;
}

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

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

.hero {
  overflow: hidden;
  min-height: calc(100dvh - 74px);
  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;
}

.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 {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .68);
  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: 34px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  left: -20px;
  bottom: 32px;
  width: min(310px, 82%);
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 24px;
  background: rgba(255, 255, 255, .86);
  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 {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  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;
}

.info-panel {
  border: 1px solid var(--line);
  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, .78);
}

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

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

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

.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, .78);
  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;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  color: var(--leaf);
}

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

.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: #fff8e8;
}

.premium-body .brand-text span,
.premium-body .lead,
.premium-body .muted,
.premium-body p {
  color: rgba(255, 248, 232, .74);
}

.premium-body .card {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
}

.premium-body .card p,
.premium-body .card li {
  color: rgba(255, 248, 232, .74);
}

.premium-body .btn.ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.premium-body .btn.primary {
  background: #f1c5d4;
  color: #172519;
  border-color: #f1c5d4;
}

.premium-body .section {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.premium-hero {
  position: relative;
  min-height: calc(100dvh - 74px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 44px 0 58px;
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 37, 25, .95) 0%, rgba(23, 37, 25, .72) 42%, rgba(23, 37, 25, .18) 100%), url("wedding-florals.png");
  background-size: cover;
  background-position: center;
}

.premium-hero .wrap {
  position: relative;
  z-index: 1;
}

.premium-hero-copy {
  max-width: 740px;
  display: grid;
  gap: 24px;
}

.story-steps {
  display: grid;
  gap: 22px;
  counter-reset: step;
}

.story-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.story-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  color: #f1c5d4;
  font-weight: 900;
}

.product-body {
  background: #fffaf2;
}

.product-hero {
  padding: 34px 0 62px;
}

.product-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 30px;
  align-items: start;
}

.product-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

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

.product-tile {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.product-tile img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.product-tile div {
  padding: 20px;
}

.product-tile h3 {
  margin-bottom: 8px;
}

.dashboard-body {
  min-height: 100dvh;
  background: #f8f3e8;
}

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

.dashboard-main .wrap {
  width: min(1440px, calc(100% - 64px));
}

.dashboard-head {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(340px, 520px);
  align-items: end;
  column-gap: 84px;
  margin: 30px auto 22px;
}

.dashboard-head > div {
  min-width: 0;
}

.dashboard-head h1 {
  font-size: clamp(42px, 4.1vw, 72px);
  line-height: .96;
  max-width: 600px;
}

.dashboard-head .lead {
  align-self: end;
  max-width: 520px;
}

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

.variant-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(20, 83, 45, .1);
}

.preview-button {
  display: block;
  color: inherit;
  text-decoration: none;
}

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

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

.card-body {
  padding: 18px;
}

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

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

.modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 22, 15, .7);
}

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

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

.modal-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: end;
}

.modal-tools button,
.modal-tools a {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  min-height: 42px;
  padding: 10px 14px;
  font-weight: 800;
  text-decoration: none;
}

.modal-stage {
  display: grid;
  place-items: stretch;
  padding: 0;
  overflow: auto;
}

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

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

.modal-stage.mobile .modal-frame {
  width: min(390px, 100%);
  height: min(844px, 100%);
  border-radius: 30px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .36);
}

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

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

  .nav a:not(.nav-priority) {
    display: none;
  }

  .hero-grid,
  .split,
  .product-layout,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-img {
    height: min(450px, 74vw);
    border-radius: 24px;
  }

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

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

  .product-sidebar {
    position: static;
  }

  .section {
    padding: 62px 0;
  }

  .contact-band {
    padding: 28px;
  }

  .footer-inner,
  .dashboard-head {
    align-items: start;
  }

  .dashboard-main .wrap {
    width: min(100% - 28px, 720px);
  }

  .dashboard-head {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .modal-panel {
    inset: 10px;
  }

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

@media (max-width: 520px) {
  h1 {
    font-size: 40px;
    line-height: .98;
    overflow-wrap: anywhere;
  }

  .topbar-inner {
    gap: 10px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-text {
    min-width: 0;
  }

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

  .brand-text span {
    font-size: 10px;
    letter-spacing: .1em;
  }

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

  .nav {
    gap: 6px;
  }

  .nav a {
    display: none;
  }

  .btn {
    width: 100%;
  }

  .fab-call {
    display: none;
  }

  .lang-select {
    min-width: 54px;
    flex: 0 0 auto;
  }

  .hero-actions .btn,
  .actions .btn {
    justify-content: center;
  }

  .modal-tools {
    width: 100%;
  }

  .modal-tools button,
  .modal-tools a {
    flex: 1 1 auto;
  }
}

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