:root {
    --bg: #FAFAF8;
    --cream: #F5F0E8;
    --cream-deep: #EBE3D5;
    --rose: #C9847A;
    --rose-deep: #B86F65;
    --sage: #8A9E8C;
    --sage-deep: #6F8472;
    --ink: #2C2C2C;
    --ink-soft: #5C5854;
    --ink-mute: #8A857F;
    --line: rgba(44, 44, 44, 0.08);
    --shadow-sm: 0 1px 2px rgba(44, 44, 44, 0.04), 0 4px 12px rgba(44, 44, 44, 0.04);
    --shadow-md: 0 2px 4px rgba(44, 44, 44, 0.04), 0 12px 32px rgba(44, 44, 44, 0.06);
    --shadow-lg: 0 4px 8px rgba(44, 44, 44, 0.05), 0 24px 60px rgba(44, 44, 44, 0.10);
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 24px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

    --f-serif: 'Playfair Display', 'Times New Roman', serif;
    --f-sans: 'DM Sans', system-ui, sans-serif;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--f-sans);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ───────── NAV ───────── */
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 250, 248, 0.86);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 300ms var(--ease), background 300ms var(--ease);
  }
  .nav.scrolled {
    border-bottom-color: var(--line);
    background: rgba(250, 250, 248, 0.94);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 24px;
  }
  .logo {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
  }
  .logo-mark {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    align-self: center;
  }
  .logo-text {
    font-family: var(--f-serif);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1;
  }
  .logo-sub {
    font-family: var(--f-sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-left: 2px;
  }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .nav-phone {
    font-family: var(--f-sans);
    font-size: 14px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 200ms var(--ease);
  }
  .nav-phone:hover { color: var(--rose); }
  .nav-phone-label {
    color: var(--ink-mute);
    font-weight: 400;
    margin-right: 6px;
    font-size: 13px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--f-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 13px 26px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 240ms var(--ease), background 240ms var(--ease), box-shadow 240ms var(--ease), color 240ms var(--ease);
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--rose);
    color: #fff;
    box-shadow: 0 1px 2px rgba(201, 132, 122, 0.20), 0 8px 20px rgba(201, 132, 122, 0.22);
  }
  .btn-primary:hover {
    background: var(--rose-deep);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(184, 111, 101, 0.22), 0 14px 28px rgba(184, 111, 101, 0.28);
  }
  .btn-primary:active { transform: translateY(0); }

  .btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
  }
  .btn-ghost:hover {
    background: var(--cream);
    border-color: rgba(44,44,44,0.16);
  }

  .btn-light {
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
  }
  .btn-light:hover {
    background: #fff;
    transform: translateY(-1px);
  }

  .btn-large {
    font-size: 15px;
    padding: 17px 36px;
  }

  .btn .arrow {
    transition: transform 240ms var(--ease);
  }
  .btn:hover .arrow {
    transform: translateX(3px);
  }

  /* ───────── HERO ───────── */
  .hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg) 0%, #F7F2EB 100%);
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
    min-height: 720px;
    padding: 72px 0 96px;
  }
  .hero-eyebrow {
    display: inline-block;
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 18px;
    font-weight: 400;
    color: var(--rose);
    margin-bottom: 24px;
  }
  .hero-headline {
    font-family: var(--f-serif);
    font-weight: 400;
    font-size: clamp(48px, 6.2vw, 88px);
    line-height: 1.02;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 28px;
    text-wrap: pretty;
  }
  .hero-headline em {
    font-style: italic;
    font-weight: 400;
  }
  .hero-sub {
    font-family: var(--f-sans);
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 460px;
    margin-bottom: 40px;
    font-weight: 400;
  }
  .hero-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .hero-meta {
    font-family: var(--f-sans);
    font-size: 13px;
    color: var(--ink-mute);
    letter-spacing: 0.02em;
  }

  .hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .hero-visual image-slot {
    width: 100%;
    height: 100%;
  }
  .hero-caption {
    margin-top: 16px;
    font-family: var(--f-sans);
    font-size: 12.5px;
    color: var(--ink-mute);
    letter-spacing: 0.02em;
  }
  .hero-caption em {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 14px;
    color: var(--ink-soft);
  }

  /* ───────── USP STRIP ───────── */
  .usp {
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .usp-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .usp-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 32px;
    border-right: 1px solid var(--line);
  }
  .usp-item:last-child { border-right: none; }
  .usp-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--sage-deep);
  }
  .usp-text {
    font-family: var(--f-sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.35;
  }
  .usp-text small {
    display: block;
    font-weight: 400;
    color: var(--ink-mute);
    font-size: 13px;
    margin-top: 2px;
  }

  /* ───────── SECTION ATOMS ───────── */
  section.block { padding: 120px 0; }

  .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 64px;
  }
  .section-eyebrow {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 17px;
    font-weight: 400;
    color: var(--rose);
    margin-bottom: 14px;
    display: block;
  }
  .section-title {
    font-family: var(--f-serif);
    font-weight: 400;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.015em;
    color: var(--ink);
    max-width: 640px;
    text-wrap: pretty;
  }
  .section-title em {
    font-style: italic;
    font-weight: 400;
  }
  .section-lede {
    font-family: var(--f-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 380px;
  }

  /* ───────── FEATURED BOUQUETS ───────── */
  .bouquets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .bouquet {
    background: var(--bg);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 360ms var(--ease), box-shadow 360ms var(--ease);
    cursor: pointer;
    display: flex;
    flex-direction: column;
  }
  .bouquet:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }
  .bouquet-img {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--cream);
  }
  .bouquet-img image-slot {
    width: 100%;
    height: 100%;
    transition: transform 700ms var(--ease);
  }
  .bouquet:hover .bouquet-img image-slot {
    transform: scale(1.04);
  }

  .bouquet-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
  }
  .bouquet-name {
    font-family: var(--f-serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.005em;
  }
  .bouquet-desc {
    font-family: var(--f-sans);
    font-size: 14px;
    color: var(--ink-mute);
    line-height: 1.5;
  }
  .bouquet-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }
  .bouquet-price {
    font-family: var(--f-serif);
    font-size: 30px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.01em;
  }
  .bouquet-price small {
    font-family: var(--f-sans);
    font-size: 15px;
    font-weight: 400;
    color: var(--ink-mute);
    margin-left: 4px;
  }
  .bouquet-cta {
    font-family: var(--f-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--rose);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 240ms var(--ease);
  }
  .bouquet-cta:hover { gap: 10px; }
  .bouquet-cta::after { content: "→"; }

  /* ───────── ABOUT ───────── */
  .about {
    background: var(--cream);
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
  }
  .about-text .section-title { margin-bottom: 28px; }
  .about-body {
    font-family: var(--f-sans);
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 32px;
  }
  .about-body p + p { margin-top: 16px; }
  .about-signature {
    padding-top: 28px;
    border-top: 1px solid rgba(44, 44, 44, 0.10);
  }
  .about-sig-name {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 19px;
    color: var(--ink);
  }
  .about-sig-role {
    font-family: var(--f-sans);
    font-size: 13px;
    color: var(--ink-mute);
    margin-top: 2px;
  }
  .about-visual {
    position: relative;
    aspect-ratio: 5 / 6;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .about-visual image-slot {
    width: 100%;
    height: 100%;
  }


  /* ───────── HOW TO ORDER ───────── */
  .steps {
    background: var(--bg);
  }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .step {
    padding: 40px 32px 8px 0;
    border-right: 1px solid var(--line);
  }
  .step:last-child { border-right: none; padding-right: 0; }
  .step:not(:first-child) { padding-left: 32px; }
  .step-num {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 18px;
    color: var(--rose);
    margin-bottom: 18px;
    display: block;
  }
  .step-title {
    font-family: var(--f-serif);
    font-size: 26px;
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.15;
    letter-spacing: -0.005em;
  }
  .step-desc {
    font-family: var(--f-sans);
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.65;
    max-width: 320px;
  }

  /* ───────── TESTIMONIALS ───────── */
  .reviews {
    background: var(--cream);
  }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .review {
    background: var(--bg);
    border-radius: var(--r-lg);
    padding: 40px 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: var(--shadow-sm);
  }
  .stars {
    display: inline-flex;
    gap: 3px;
    color: var(--rose);
  }
  .star { width: 14px; height: 14px; }
  .review-body {
    font-family: var(--f-serif);
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink);
    font-weight: 400;
    flex: 1;
    text-wrap: pretty;
  }
  .review-foot {
    line-height: 1.4;
  }
  .review-name {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 17px;
    color: var(--ink);
  }
  .review-when {
    font-family: var(--f-sans);
    font-size: 12.5px;
    color: var(--ink-mute);
    margin-top: 2px;
  }

  /* ───────── CTA BANNER ───────── */
  .cta-banner {
    background: var(--rose);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .cta-inner {
    padding: 110px 0;
    text-align: center;
    position: relative;
  }
  .cta-eyebrow {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 18px;
    color: rgba(255,255,255,0.80);
    margin-bottom: 20px;
  }
  .cta-title {
    font-family: var(--f-serif);
    font-weight: 400;
    font-size: clamp(36px, 4.4vw, 60px);
    line-height: 1.08;
    color: #fff;
    margin: 0 auto 24px;
    max-width: 760px;
    text-wrap: pretty;
    letter-spacing: -0.01em;
  }
  .cta-title em {
    font-style: italic;
  }
  .cta-sub {
    font-family: var(--f-sans);
    font-size: 16px;
    color: rgba(255,255,255,0.84);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.6;
  }

  /* ───────── FOOTER ───────── */
  .footer {
    background: var(--bg);
    padding: 80px 0 32px;
    border-top: 1px solid var(--line);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
    gap: 48px;
    margin-bottom: 64px;
  }
  .footer-brand .logo { margin-bottom: 18px; }
  .footer-brand p {
    font-family: var(--f-sans);
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.65;
    max-width: 280px;
  }
  .footer-col h4 {
    font-family: var(--f-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col li {
    font-family: var(--f-sans);
    font-size: 14px;
    color: var(--ink);
    line-height: 1.5;
  }
  .footer-col a {
    color: var(--ink);
    text-decoration: none;
    transition: color 200ms var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .footer-col a:hover { color: var(--rose); }
  .footer-col .muted { color: var(--ink-mute); }

  .footer-map {
    aspect-ratio: 16 / 10;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--cream);
    position: relative;
    border: 1px solid var(--line);
    display: flex;
    align-items: flex-end;
    padding: 20px;
  }
  .footer-map::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(90deg, transparent 0 18px, rgba(44,44,44,0.04) 18px 19px),
      repeating-linear-gradient(0deg, transparent 0 18px, rgba(44,44,44,0.04) 18px 19px);
  }
  .footer-map-label {
    position: relative;
    font-family: var(--f-sans);
    font-size: 12px;
    color: var(--ink-soft);
    line-height: 1.5;
  }
  .footer-map-label strong {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
    font-size: 15px;
    color: var(--ink);
    display: block;
    margin-bottom: 2px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    font-family: var(--f-sans);
    font-size: 12.5px;
    color: var(--ink-mute);
  }
  .footer-bottom-links { display: flex; gap: 24px; }
  .footer-bottom-links a { color: var(--ink-mute); text-decoration: none; transition: color 200ms var(--ease); }
  .footer-bottom-links a:hover { color: var(--ink); }

  /* ───────── PLACEHOLDER IMAGE SLOT STYLING ───────── */
  /* Quiet, neutral placeholder — just paper-toned cream */
  image-slot {
    display: block;
    background: var(--cream-deep);
    color: var(--ink-mute);
  }

  /* ───────── RESPONSIVE ───────── */
  @media (max-width: 960px) {
    .container { padding: 0 24px; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; padding: 56px 0 72px; min-height: auto; }
    .hero-visual { max-width: 520px; margin: 0 auto; aspect-ratio: 4/4.6; width: 100%; }
    .usp-inner { grid-template-columns: 1fr; }
    .usp-item { border-right: none; border-bottom: 1px solid var(--line); }
    .usp-item:last-child { border-bottom: none; }
    section.block { padding: 80px 0; }
    .bouquets-grid, .reviews-grid { grid-template-columns: 1fr; gap: 24px; }
    .steps-grid { grid-template-columns: 1fr; border-top: none; }
    .step { border-right: none; border-bottom: 1px solid var(--line); padding: 32px 0 24px; }
    .step:not(:first-child) { padding-left: 0; }
    .step:last-child { border-bottom: none; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-map-wrap { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .nav-phone-label { display: none; }
    .nav-right { gap: 16px; }
  }
  @media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
    .nav-phone { display: none; }
    .hero-headline { font-size: 44px; }
    .cta-inner { padding: 64px 0; }
    .about-stats { right: 16px; bottom: 16px; padding: 14px 18px; gap: 16px; }
  }