:root {
      --milk: #fffaf4;
      --cream: #f7efe6;
      --rose: #e9b8bf;
      --rose-dark: #c88490;
      --sage: #8fa895;
      --sage-dark: #536f5d;
      --graphite: #2b2b2b;
      --muted: #746f6c;
      --white: #ffffff;
      --line: rgba(83, 111, 93, 0.18);
      --shadow: 0 24px 70px rgba(76, 62, 51, 0.10);
      --radius-xl: 36px;
      --radius-lg: 26px;
      --radius-md: 18px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      color: var(--graphite);
      background:
        radial-gradient(circle at 8% 4%, rgba(233, 184, 191, 0.34), transparent 28%),
        radial-gradient(circle at 92% 8%, rgba(143, 168, 149, 0.22), transparent 26%),
        linear-gradient(180deg, var(--milk) 0%, #fff 44%, var(--milk) 100%);
      overflow-x: hidden;
    }

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

    .page {
      position: relative;
    }

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(18px);
      background: rgba(255, 250, 244, 0.78);
      border-bottom: 1px solid var(--line);
    }

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

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 750;
      letter-spacing: -0.04em;
      font-size: 22px;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #f8d8dd, #e7efe4);
      box-shadow: 0 12px 30px rgba(201, 132, 144, 0.25);
      font-size: 20px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      color: var(--muted);
      font-size: 15px;
    }

    .nav-links a:hover {
      color: var(--sage-dark);
    }

    .nav-cta {
      padding: 12px 18px;
      border-radius: 999px;
      color: var(--white);
      background: var(--sage-dark);
      font-weight: 650;
      box-shadow: 0 16px 32px rgba(83, 111, 93, 0.22);
    }

    .hero {
      padding: 72px 0 64px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.03fr 0.97fr;
      gap: 52px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 9px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.76);
      border: 1px solid var(--line);
      color: var(--sage-dark);
      font-size: 14px;
      font-weight: 650;
      box-shadow: 0 14px 40px rgba(76, 62, 51, 0.06);
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--rose-dark);
    }

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

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

    .hero-subtitle {
      margin-top: 24px;
      max-width: 620px;
      color: var(--muted);
      font-size: 20px;
      line-height: 1.6;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 32px;
    }

    .btn {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-height: 54px;
      padding: 0 24px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 16px;
      font-weight: 720;
      cursor: pointer;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    }

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

    .btn-primary {
      color: var(--white);
      background: var(--sage-dark);
      box-shadow: 0 18px 38px rgba(83, 111, 93, 0.28);
    }

    .btn-secondary {
      color: var(--sage-dark);
      background: rgba(255, 255, 255, 0.72);
      border-color: var(--line);
    }

    .hero-note {
      margin-top: 18px;
      color: var(--muted);
      font-size: 14px;
    }

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

    .hero-card {
      position: relative;
      height: 560px;
      border-radius: 42px;
      background:
        linear-gradient(145deg, rgba(255,255,255,0.62), rgba(255,255,255,0.22)),
        radial-gradient(circle at 40% 28%, #f7cbd1 0 8%, transparent 9%),
        radial-gradient(circle at 61% 35%, #f1bcc5 0 9%, transparent 10%),
        radial-gradient(circle at 49% 48%, #e6aeb8 0 10%, transparent 11%),
        radial-gradient(circle at 32% 44%, #f3d4d7 0 8%, transparent 9%),
        radial-gradient(circle at 69% 54%, #d9e5d7 0 9%, transparent 10%),
        linear-gradient(180deg, #fff8f0, #f3e6df);
      border: 1px solid rgba(255,255,255,0.85);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 55px 58px auto auto;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(255,255,255,0.45);
      filter: blur(2px);
    }

    .hero-card::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 78px;
      transform: translateX(-50%);
      width: 64%;
      height: 120px;
      border-radius: 50% 50% 22px 22px;
      background: linear-gradient(180deg, rgba(143,168,149,0.22), rgba(83,111,93,0.30));
      filter: blur(1px);
    }

    .bouquet-big {
      position: absolute;
      inset: 72px 48px 86px 48px;
      z-index: 2;
      display: grid;
      place-items: center;
    }

    .stem {
      position: absolute;
      bottom: 22px;
      left: 50%;
      width: 8px;
      height: 270px;
      border-radius: 8px;
      background: linear-gradient(180deg, #9fb49f, #617b68);
      transform-origin: bottom;
    }

    .stem.s1 { transform: rotate(-24deg); }
    .stem.s2 { transform: rotate(-12deg); height: 300px; }
    .stem.s3 { transform: rotate(4deg); height: 320px; }
    .stem.s4 { transform: rotate(16deg); height: 295px; }
    .stem.s5 { transform: rotate(27deg); height: 250px; }

    .flower {
      position: absolute;
      width: 132px;
      height: 132px;
      border-radius: 45% 55% 48% 52%;
      background: radial-gradient(circle at 34% 32%, #fff7f6 0 13%, transparent 14%),
                  radial-gradient(circle at 68% 33%, #fbe5e6 0 18%, transparent 19%),
                  radial-gradient(circle at 45% 70%, #e8a8b1 0 31%, #f4cbd0 32% 70%);
      box-shadow: inset -16px -12px 30px rgba(188, 105, 121, 0.12), 0 22px 34px rgba(201,132,144,0.20);
    }

    .flower.f1 { top: 26px; left: 78px; transform: rotate(-18deg) scale(.95); }
    .flower.f2 { top: 72px; right: 78px; transform: rotate(22deg) scale(1.08); }
    .flower.f3 { top: 162px; left: 185px; transform: rotate(6deg) scale(1.16); }
    .flower.f4 { top: 174px; right: 178px; transform: rotate(-10deg) scale(.92); }
    .flower.f5 { top: 248px; left: 96px; transform: rotate(22deg) scale(.86); }

    .leaf {
      position: absolute;
      width: 82px;
      height: 38px;
      border-radius: 90% 8px 90% 8px;
      background: linear-gradient(135deg, #c9d8c5, #78967f);
      box-shadow: 0 12px 22px rgba(83, 111, 93, 0.12);
    }
    .leaf.l1 { bottom: 178px; left: 108px; transform: rotate(36deg); }
    .leaf.l2 { bottom: 226px; right: 126px; transform: rotate(-150deg); }
    .leaf.l3 { bottom: 114px; right: 190px; transform: rotate(-118deg); }

    .floating-card {
      position: absolute;
      z-index: 5;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      border-radius: 20px;
      background: rgba(255,255,255,0.84);
      border: 1px solid rgba(255,255,255,0.78);
      box-shadow: 0 18px 46px rgba(76, 62, 51, 0.12);
      backdrop-filter: blur(14px);
      color: var(--muted);
      font-weight: 650;
      font-size: 14px;
    }

    .floating-card b {
      color: var(--graphite);
      display: block;
      margin-bottom: 2px;
    }

    .float-1 { left: -16px; top: 78px; }
    .float-2 { right: -12px; top: 236px; }
    .float-3 { left: 44px; bottom: 48px; }

    .icon-round {
      width: 38px;
      height: 38px;
      flex: 0 0 auto;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: #f8e4e6;
    }

    section {
      padding: 72px 0;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 28px;
      align-items: end;
      margin-bottom: 34px;
    }

    .section-title {
      max-width: 680px;
    }

    .section-title h2 {
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 500;
      font-size: clamp(34px, 4vw, 58px);
      line-height: 1.02;
      letter-spacing: -0.045em;
    }

    .section-title p {
      margin-top: 14px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.55;
    }

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

    .soft-card {
      padding: 24px;
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(83, 111, 93, 0.12);
      box-shadow: 0 18px 50px rgba(76, 62, 51, 0.06);
    }

    .soft-card .mini-icon {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      background: linear-gradient(135deg, rgba(233,184,191,0.42), rgba(143,168,149,0.24));
      font-size: 22px;
    }

    .soft-card h3 {
      font-size: 18px;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }

    .soft-card p {
      color: var(--muted);
      line-height: 1.55;
      font-size: 15px;
    }

    .catalog {
      background: linear-gradient(180deg, rgba(247,239,230,.48), rgba(255,255,255,.72));
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .tabs {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .tab {
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.72);
      border-radius: 999px;
      padding: 11px 17px;
      color: var(--muted);
      font-weight: 650;
      cursor: pointer;
      transition: .2s ease;
    }

    .tab.active, .tab:hover {
      background: var(--sage-dark);
      color: white;
      border-color: var(--sage-dark);
    }

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

    .product-card {
      overflow: hidden;
      border-radius: 30px;
      background: rgba(255,255,255,0.82);
      border: 1px solid rgba(83, 111, 93, 0.12);
      box-shadow: 0 24px 64px rgba(76, 62, 51, 0.08);
      transition: transform .24s ease, box-shadow .24s ease;
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 30px 74px rgba(76, 62, 51, 0.12);
    }

    .product-art {
      height: 260px;
      position: relative;
      display: grid;
      place-items: center;
      overflow: hidden;
      background: linear-gradient(140deg, #fff6f1, #f0e5dd);
    }

    .product-art::before {
      content: "";
      position: absolute;
      inset: 24px;
      border-radius: 28px;
      background: rgba(255,255,255,0.42);
      border: 1px solid rgba(255,255,255,0.58);
    }

    .product-art .small-bouquet {
      position: relative;
      z-index: 2;
      width: 174px;
      height: 174px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 30% 34%, #f2c0c8 0 16%, transparent 17%),
        radial-gradient(circle at 67% 32%, #e9aeba 0 18%, transparent 19%),
        radial-gradient(circle at 50% 52%, #f6d1d5 0 24%, transparent 25%),
        radial-gradient(circle at 34% 70%, #d7e4d2 0 16%, transparent 17%),
        radial-gradient(circle at 66% 70%, #94aa94 0 12%, transparent 13%);
      filter: drop-shadow(0 24px 30px rgba(201,132,144,0.22));
    }

    .product-art .small-bouquet::after {
      content: "";
      position: absolute;
      left: 58px;
      right: 58px;
      bottom: -44px;
      height: 96px;
      background: linear-gradient(180deg, #89a48e, #607862);
      clip-path: polygon(43% 0, 57% 0, 100% 100%, 0 100%);
      border-radius: 9px;
    }

    .product-art.var-2 { background: linear-gradient(140deg, #f7f0e4, #e7efe4); }
    .product-art.var-2 .small-bouquet {
      background:
        radial-gradient(circle at 30% 34%, #fff2ce 0 16%, transparent 17%),
        radial-gradient(circle at 67% 32%, #efc0c8 0 18%, transparent 19%),
        radial-gradient(circle at 50% 52%, #f3dfb5 0 24%, transparent 25%),
        radial-gradient(circle at 34% 70%, #c2d5be 0 16%, transparent 17%),
        radial-gradient(circle at 66% 70%, #8faa95 0 12%, transparent 13%);
    }

    .product-art.var-3 { background: linear-gradient(140deg, #fbf0f3, #f4e1e4); }
    .product-art.var-3 .small-bouquet {
      background:
        radial-gradient(circle at 30% 34%, #eeb0bc 0 16%, transparent 17%),
        radial-gradient(circle at 67% 32%, #d48997 0 18%, transparent 19%),
        radial-gradient(circle at 50% 52%, #f2c4cc 0 24%, transparent 25%),
        radial-gradient(circle at 34% 70%, #e9d1b9 0 16%, transparent 17%),
        radial-gradient(circle at 66% 70%, #839f87 0 12%, transparent 13%);
    }

    .product-body {
      padding: 22px 22px 24px;
    }

    .tag-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 13px;
    }

    .tag {
      display: inline-flex;
      padding: 7px 10px;
      border-radius: 999px;
      background: #f7e4e7;
      color: var(--rose-dark);
      font-size: 12px;
      font-weight: 750;
    }

    .price {
      color: var(--sage-dark);
      font-weight: 820;
      font-size: 18px;
    }

    .product-body h3 {
      font-size: 21px;
      letter-spacing: -0.03em;
      margin-bottom: 10px;
    }

    .product-body p {
      color: var(--muted);
      line-height: 1.52;
      font-size: 15px;
      min-height: 68px;
    }

    .product-actions {
      display: flex;
      gap: 10px;
      align-items: center;
      margin-top: 18px;
    }

    .btn-small {
      min-height: 44px;
      padding: 0 18px;
      font-size: 14px;
    }

    .link-more {
      color: var(--sage-dark);
      font-weight: 750;
      font-size: 14px;
    }

    .occasion-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 28px;
      align-items: stretch;
    }

    .big-panel {
      border-radius: var(--radius-xl);
      padding: 38px;
      background:
        radial-gradient(circle at 85% 5%, rgba(233,184,191,0.34), transparent 28%),
        linear-gradient(145deg, rgba(255,255,255,0.82), rgba(247,239,230,0.76));
      border: 1px solid rgba(83, 111, 93, 0.12);
      box-shadow: var(--shadow);
      min-height: 100%;
    }

    .big-panel h2 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(32px, 3vw, 50px);
      line-height: 1.06;
      font-weight: 500;
      letter-spacing: -0.04em;
      margin-bottom: 16px;
    }

    .big-panel p {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.6;
      margin-bottom: 26px;
    }

    .occasion-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .occasion-card {
      padding: 22px;
      min-height: 154px;
      border-radius: 24px;
      background: rgba(255,255,255,0.74);
      border: 1px solid var(--line);
    }

    .occasion-card h3 {
      margin: 12px 0 8px;
      font-size: 18px;
      letter-spacing: -0.02em;
    }

    .occasion-card p {
      color: var(--muted);
      line-height: 1.48;
      font-size: 14px;
    }

    .custom {
      padding-top: 84px;
    }

    .custom-grid {
      display: grid;
      grid-template-columns: 1fr 0.82fr;
      gap: 32px;
      align-items: start;
    }

    .check-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 28px;
    }

    .check {
      display: flex;
      gap: 10px;
      align-items: center;
      color: var(--muted);
      padding: 13px 14px;
      border-radius: 16px;
      background: rgba(255,255,255,0.64);
      border: 1px solid var(--line);
    }

    .check::before {
      content: "✓";
      display: grid;
      place-items: center;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(143,168,149,0.25);
      color: var(--sage-dark);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .form-card {
      padding: 30px;
      border-radius: var(--radius-xl);
      background: #ffffff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .form-card h3 {
      font-size: 26px;
      letter-spacing: -0.04em;
      margin-bottom: 8px;
    }

    .form-card p {
      color: var(--muted);
      line-height: 1.5;
      margin-bottom: 20px;
    }

    .field {
      width: 100%;
      height: 52px;
      border: 1px solid rgba(83, 111, 93, 0.18);
      border-radius: 16px;
      padding: 0 16px;
      margin-bottom: 12px;
      background: #fffaf4;
      font: inherit;
      outline: none;
      color: var(--graphite);
    }

    textarea.field {
      height: 104px;
      padding-top: 14px;
      resize: vertical;
    }

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

    .step {
      position: relative;
      padding: 25px;
      border-radius: 26px;
      background: rgba(255,255,255,0.75);
      border: 1px solid var(--line);
      box-shadow: 0 18px 50px rgba(76, 62, 51, 0.06);
    }

    .step-num {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      background: var(--sage-dark);
      color: white;
      font-weight: 850;
      margin-bottom: 18px;
    }

    .step h3 {
      font-size: 19px;
      letter-spacing: -0.02em;
      margin-bottom: 10px;
    }

    .step p {
      color: var(--muted);
      line-height: 1.5;
      font-size: 15px;
    }

    .delivery-box {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: center;
      padding: 42px;
      border-radius: 40px;
      background:
        radial-gradient(circle at 20% 0%, rgba(233,184,191,0.25), transparent 25%),
        radial-gradient(circle at 100% 75%, rgba(143,168,149,0.25), transparent 28%),
        #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

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

    .delivery-item {
      padding: 18px 18px;
      border-radius: 20px;
      background: rgba(255,250,244,0.78);
      border: 1px solid var(--line);
    }

    .delivery-item h3 {
      font-size: 17px;
      margin-bottom: 7px;
    }

    .delivery-item p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr 1fr;
      gap: 18px;
    }

    .gallery-item {
      min-height: 220px;
      border-radius: 30px;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 35% 36%, #f1bbc5 0 12%, transparent 13%),
        radial-gradient(circle at 63% 45%, #f8d8dc 0 16%, transparent 17%),
        radial-gradient(circle at 47% 62%, #97ae98 0 10%, transparent 11%),
        linear-gradient(140deg, #fff4ee, #ebe0d6);
      box-shadow: 0 24px 56px rgba(76, 62, 51, 0.08);
      border: 1px solid rgba(255,255,255,0.82);
    }

    .gallery-item.tall {
      min-height: 460px;
      grid-row: span 2;
    }

    .gallery-item.wide {
      grid-column: span 2;
    }

    .gallery-item::after {
      content: "";
      position: absolute;
      inset: auto 18px 18px 18px;
      height: 42%;
      border-radius: 28px;
      background: linear-gradient(180deg, transparent, rgba(43,43,43,0.18));
      opacity: .45;
    }

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

    .review {
      padding: 26px;
      border-radius: 28px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 18px 50px rgba(76, 62, 51, 0.06);
    }

    .stars {
      color: var(--rose-dark);
      letter-spacing: 2px;
      margin-bottom: 18px;
    }

    .review p {
      color: var(--muted);
      line-height: 1.62;
      margin-bottom: 18px;
    }

    .review b {
      display: block;
      color: var(--graphite);
    }

    .faq {
      background: linear-gradient(180deg, transparent, rgba(247,239,230,0.55));
    }

    .faq-list {
      display: grid;
      gap: 12px;
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-item {
      border-radius: 22px;
      background: rgba(255,255,255,0.76);
      border: 1px solid var(--line);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      border: 0;
      background: transparent;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      padding: 22px 24px;
      color: var(--graphite);
      font: inherit;
      font-size: 18px;
      font-weight: 750;
      text-align: left;
      cursor: pointer;
    }

    .faq-plus {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      background: rgba(143,168,149,0.18);
      color: var(--sage-dark);
      font-weight: 900;
      transition: transform .2s ease;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .25s ease;
    }

    .faq-answer p {
      padding: 0 24px 22px;
      color: var(--muted);
      line-height: 1.55;
    }

    .faq-item.open .faq-answer {
      max-height: 140px;
    }

    .faq-item.open .faq-plus {
      transform: rotate(45deg);
    }

    .final-cta {
      padding: 96px 0;
    }

    .cta-box {
      text-align: center;
      padding: 58px 28px;
      border-radius: 42px;
      background:
        radial-gradient(circle at 12% 12%, rgba(233,184,191,0.35), transparent 25%),
        radial-gradient(circle at 90% 90%, rgba(143,168,149,0.30), transparent 28%),
        linear-gradient(145deg, #fff, #fff5ef);
      border: 1px solid rgba(83,111,93,0.13);
      box-shadow: var(--shadow);
    }

    .cta-box h2 {
      max-width: 760px;
      margin: 0 auto;
      font-family: Georgia, "Times New Roman", serif;
      font-weight: 500;
      font-size: clamp(34px, 5vw, 64px);
      line-height: 1.03;
      letter-spacing: -0.045em;
    }

    .cta-box p {
      max-width: 640px;
      margin: 18px auto 28px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.58;
    }

    footer {
      border-top: 1px solid var(--line);
      padding: 34px 0;
      background: rgba(255,255,255,0.55);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 22px;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-inner b {
      color: var(--graphite);
    }

    .admin-note {
      margin-top: 18px;
      padding: 18px 20px;
      border-radius: 18px;
      background: rgba(143, 168, 149, 0.11);
      border: 1px dashed rgba(83,111,93,0.28);
      color: var(--sage-dark);
      line-height: 1.5;
      font-size: 14px;
    }

    @media (max-width: 980px) {
      .nav-links {
        display: none;
      }

      .hero-grid,
      .occasion-grid,
      .custom-grid,
      .delivery-box {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 48px;
      }

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

      .hero-card {
        height: 500px;
      }

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

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

      .section-head {
        display: block;
      }

      .section-title p {
        max-width: 720px;
      }
    }

    @media (max-width: 680px) {
      .container {
        width: min(100% - 24px, var(--max));
      }

      .nav-inner {
        height: 68px;
      }

      .brand {
        font-size: 19px;
      }

      .nav-cta {
        display: none;
      }

      .hero {
        padding: 34px 0 50px;
      }

      h1 {
        font-size: 48px;
      }

      .hero-subtitle {
        font-size: 17px;
      }

      .btn {
        width: 100%;
      }

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

      .hero-card {
        height: 420px;
        border-radius: 32px;
      }

      .flower {
        width: 98px;
        height: 98px;
      }

      .flower.f1 { left: 32px; }
      .flower.f2 { right: 40px; }
      .flower.f3 { left: 120px; top: 140px; }
      .flower.f4 { right: 118px; top: 194px; }
      .flower.f5 { left: 58px; top: 240px; }

      .floating-card {
        display: none;
      }

      section {
        padding: 54px 0;
      }

      .trust-grid,
      .products,
      .occasion-cards,
      .check-list,
      .steps,
      .reviews-grid,
      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .gallery-item.wide {
        grid-column: span 1;
      }

      .gallery-item.tall {
        min-height: 300px;
        grid-row: span 1;
      }

      .soft-card,
      .big-panel,
      .form-card,
      .delivery-box {
        padding: 24px;
        border-radius: 26px;
      }

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

    /* Real photo layer */
    .hero-card.real-photo {
      background: #fff;
      overflow: hidden;
    }

    .hero-card.real-photo::before,
    .hero-card.real-photo::after {
      content: none;
    }

    .hero-card.real-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1.01);
    }

    .photo-soft-overlay {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 22% 10%, rgba(255,255,255,0.18), transparent 30%),
        linear-gradient(180deg, rgba(255,250,244,0.02), rgba(43,43,43,0.10));
      pointer-events: none;
    }

    .product-art {
      background: #f7efe6;
    }

    .product-art::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      border-radius: 0;
      background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(43,43,43,0.04));
      border: 0;
    }

    .product-art img {
      position: absolute;
      inset: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1.01);
      transition: transform .35s ease;
    }

    .product-card:hover .product-art img {
      transform: scale(1.065);
    }

    .product-art .small-bouquet {
      display: none;
    }

    .form-image,
    .delivery-photo {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      border: 1px solid rgba(83,111,93,0.12);
      box-shadow: 0 18px 46px rgba(76, 62, 51, 0.08);
      background: #f7efe6;
    }

    .form-image {
      height: 210px;
      margin-bottom: 22px;
    }

    .delivery-photo {
      height: 250px;
      margin-top: 26px;
    }

    .form-image img,
    .delivery-photo img,
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .delivery-photo::after {
      content: "Доставка по Смоленску";
      position: absolute;
      left: 16px;
      bottom: 16px;
      padding: 9px 13px;
      border-radius: 999px;
      background: rgba(255,255,255,0.82);
      color: var(--sage-dark);
      font-size: 13px;
      font-weight: 750;
      backdrop-filter: blur(12px);
      box-shadow: 0 12px 32px rgba(76,62,51,.12);
    }

    .gallery-item {
      background: #f7efe6;
    }

    .gallery-item img {
      position: absolute;
      inset: 0;
      z-index: 1;
      transform: scale(1.01);
      transition: transform .35s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.055);
    }

    .gallery-item::after {
      z-index: 2;
    }

    @media (max-width: 680px) {
      .form-image {
        height: 190px;
      }
      .delivery-photo {
        height: 210px;
      }
    }


    /* FIX: changed only the main screen. Other sections and photos are kept from the original mockup. */
    .hero-final-fullscreen {
      position: relative;
      width: 100vw;
      min-height: calc(100vh - 76px);
      margin: 0;
      padding: 0;
      overflow: hidden;
      background: #f7efe8;
    }

    .hero-final-bg {
      position: absolute;
      inset: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
    }

    .hero-final-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
      filter: saturate(1.02) brightness(1.01) contrast(1.01);
      image-rendering: auto;
    }

    .hero-final-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(30,24,22,0.34) 0%, rgba(30,24,22,0.20) 34%, rgba(30,24,22,0.05) 66%, rgba(30,24,22,0.08) 100%),
        linear-gradient(180deg, rgba(30,24,22,0.02) 0%, rgba(30,24,22,0.14) 100%);
      pointer-events: none;
    }

    .hero-final-inner {
      position: relative;
      z-index: 3;
      width: min(1280px, calc(100% - 64px));
      min-height: calc(100vh - 76px);
      margin: 0 auto;
      padding: 42px 0 54px;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
    }

    .hero-final-content {
      width: min(620px, 100%);
      padding: 34px 34px 30px;
      border-radius: 30px;
      background: rgba(255,250,244,0.88);
      border: 1px solid rgba(255,255,255,0.70);
      box-shadow: 0 30px 92px rgba(46, 34, 26, 0.17);
      backdrop-filter: blur(18px);
    }

    .hero-final-content h1 {
      margin: 0;
      max-width: 620px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(54px, 6.1vw, 98px);
      line-height: .95;
      letter-spacing: -0.018em;
      font-weight: 500;
      color: #27231f;
    }

    .hero-final-content p {
      margin: 20px 0 0;
      max-width: 530px;
      color: #706963;
      font-size: 17px;
      line-height: 1.64;
    }

    .hero-final-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .hero-final-facts {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 24px;
      padding-top: 18px;
      border-top: 1px solid rgba(39,35,31,.10);
    }

    .hero-final-facts b {
      display: block;
      margin-bottom: 6px;
      color: #2b2825;
      font-size: 13px;
      letter-spacing: -0.01em;
    }

    .hero-final-facts span {
      display: block;
      color: #746f6c;
      font-size: 12px;
      line-height: 1.42;
    }

    @media (max-width: 980px) {
      .hero-final-inner {
        width: min(100% - 40px, 720px);
        padding: 34px 0 38px;
      }
    }

    @media (max-width: 680px) {
      .hero-final-fullscreen {
        min-height: calc(100svh - 68px);
      }

      .hero-final-bg img {
        object-position: center center;
      }

      .hero-final-inner {
        width: calc(100% - 28px);
        min-height: calc(100svh - 68px);
        padding: 18px 0 22px;
      }

      .hero-final-content {
        padding: 22px 18px 20px;
        border-radius: 23px;
        background: rgba(255,250,244,0.91);
      }

      .hero-final-content h1 {
        font-size: clamp(42px, 12.2vw, 54px);
        line-height: .98;
        letter-spacing: -0.008em;
      }

      .hero-final-content p {
        margin-top: 15px;
        font-size: 15px;
        line-height: 1.58;
      }

      .hero-final-actions {
        margin-top: 20px;
      }

      .hero-final-actions .btn {
        width: 100%;
        min-height: 50px;
      }

      .hero-final-facts {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 18px;
        padding-top: 14px;
      }

      .hero-final-facts div:nth-child(3) {
        display: none;
      }

      .products,
      .trust-grid,
      .occasion-cards,
      .check-list,
      .steps,
      .reviews-grid,
      .gallery-grid {
        grid-template-columns: 1fr !important;
      }

      .product-art {
        height: 230px;
      }

      .delivery-box,
      .custom-grid,
      .occasion-grid {
        grid-template-columns: 1fr !important;
      }

      .nav-links,
      .nav-cta {
        display: none !important;
      }
    }