/* Blumenhaus — Flower Delivery */
:root {
  --ink: #2d2d2d;
  --ink-soft: #8b8b8b;
  --blush: #fdf2f4;
  --sage: #e8efe8;
  --paper: #ffffff;
  --accent: #c9a6a6;
  --accent-dark: #a67c7c;
  --gold: #c9a962;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", "Helvetica Neue", sans-serif;
  --max: 1400px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; overflow-x: hidden; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #fff; }

@keyframes floatArrow { 0%,100% { transform: translateY(0); opacity: .7; } 50% { transform: translateY(10px); opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.container { max-width: var(--max); margin: 0 auto; padding: 0 clamp(24px, 5vw, 64px); }

/* Typography */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.1; }
h2 { font-size: clamp(40px, 6vw, 84px); }
.eyebrow { font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 12px; }
.link-arrow { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }

/* Nav */
.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; padding: 24px 40px; background: rgba(255,255,255,.9); backdrop-filter: blur(8px); }
.site-nav .brand { font-family: var(--serif); font-size: 26px; font-weight: 600; letter-spacing: .02em; }
.site-nav .nav-links { display: flex; gap: 32px; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.site-nav .nav-links a:hover { color: var(--accent-dark); }

/* Splash */
.splash { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; }
.splash-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.splash-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(45,45,45,.28) 0%, rgba(45,45,45,.05) 40%, rgba(45,45,45,.4) 100%); }
.splash-content { position: relative; text-align: center; color: #fff; animation: fadeUp 1s ease; }
.splash-content .eyebrow { color: rgba(255,255,255,.9); margin-bottom: 18px; }
.splash-content h1 { font-size: clamp(64px, 12vw, 180px); line-height: .95; letter-spacing: .01em; }
.splash-content .tagline { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 3vw, 34px); margin-top: 12px; }
.scroll-hint { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); color: #fff; display: flex; flex-direction: column; align-items: center; gap: 10px; animation: floatArrow 2.4s ease-in-out infinite; }
.scroll-hint span { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; }
.scroll-hint .line { width: 1px; height: 40px; background: #fff; }

/* Sections */
.section { padding: clamp(60px, 9vw, 130px) 0; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.section-header.centered { flex-direction: column; align-items: center; text-align: center; }

/* Bento Grid */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 16px; }
.bento-item { position: relative; overflow: hidden; border-radius: 3px; }
.bento-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.16,1,.3,1); }
.bento-item:hover img { transform: scale(1.06); }
.bento-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(45,45,45,.55)); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; color: #fff; }
.bento-overlay h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.bento-overlay p { font-size: 13px; opacity: .85; }
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-large .bento-overlay { padding: 32px; }
.bento-large .bento-overlay h3 { font-size: 40px; }
.bento-large .bento-overlay p { font-size: 15px; }
.bento-quote { background: var(--blush); border-radius: 3px; padding: 28px; display: flex; align-items: center; justify-content: center; }
.bento-quote p { font-family: var(--serif); font-style: italic; font-size: 26px; line-height: 1.25; color: var(--accent-dark); text-align: center; }

/* Horizontal Gallery */
.h-gallery { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 40px clamp(24px, 5vw, 64px); -webkit-overflow-scrolling: touch; }
.h-gallery::-webkit-scrollbar { display: none; }
.h-gallery-item { flex: 0 0 auto; width: min(42vw, 420px); scroll-snap-align: start; }
.h-gallery-item img { height: 60vh; width: 100%; object-fit: cover; border-radius: 3px; }
.h-gallery-item .caption { display: flex; align-items: baseline; justify-content: space-between; margin-top: 16px; }
.h-gallery-item .name { font-family: var(--serif); font-size: 26px; font-weight: 500; }
.h-gallery-item .price { font-size: 15px; color: var(--accent-dark); }
.swipe-hint { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-top: 8px; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 90vh; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-content { display: flex; align-items: center; padding: clamp(48px, 8vw, 120px); }
.split-content.blush { background: var(--blush); }
.split-content.sage { background: var(--sage); }
.split-content h2 { font-size: clamp(38px, 5vw, 68px); margin-bottom: 28px; }
.split-content p { font-size: 17px; line-height: 1.75; color: #5a5a5a; max-width: 44ch; margin-bottom: 20px; }
.split-content .signature { font-family: var(--serif); font-style: italic; font-size: 28px; color: var(--accent-dark); margin-top: 36px; }

/* Occasions Grid */
.occasions-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 260px; gap: 16px; }
.occasion-item { position: relative; overflow: hidden; border-radius: 3px; }
.occasion-item.span-2 { grid-column: span 2; }
.occasion-item.span-3 { grid-column: span 3; }
.occasion-item.span-6 { grid-column: span 6; }
.occasion-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.16,1,.3,1); }
.occasion-item:hover img { transform: scale(1.06); }
.occasion-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(45,45,45,.15) 0%, rgba(45,45,45,.55) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; color: #fff; }
.occasion-overlay h3 { font-family: var(--serif); font-size: 32px; font-weight: 500; margin-bottom: 6px; }
.occasion-overlay p { font-size: 14px; opacity: .9; line-height: 1.4; max-width: 30ch; }

/* Testimonial */
.testimonial { background: linear-gradient(135deg, var(--blush) 0%, var(--sage) 100%); padding: clamp(70px, 10vw, 150px) 0; }
.testimonial-grid { display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: center; }
.testimonial-content .quote-mark { font-family: var(--serif); font-size: 120px; line-height: .5; color: var(--accent); display: block; height: 60px; }
.testimonial-content blockquote { font-family: var(--serif); font-size: clamp(32px, 4.5vw, 66px); font-weight: 500; line-height: 1.12; letter-spacing: -.01em; }
.testimonial-content cite { display: block; margin-top: 32px; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-dark); font-style: normal; }
.testimonial-img img { aspect-ratio: 3/4; object-fit: cover; border-radius: 3px; }

/* Instagram Grid */
.insta-handle { font-size: 14px; letter-spacing: .12em; color: var(--accent-dark); margin-top: 8px; }
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.insta-item { position: relative; overflow: hidden; aspect-ratio: 1; border-radius: 2px; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.insta-item:hover img { transform: scale(1.08); }

/* Footer */
.site-footer { border-top: 1px solid #ececec; padding: 48px 0; }
.footer-main { display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: space-between; }
.footer-main .brand { font-family: var(--serif); font-size: 24px; font-weight: 600; }
.footer-links { display: flex; gap: 28px; font-size: 14px; color: #5a5a5a; }
.footer-social { display: flex; gap: 20px; font-size: 13px; color: var(--ink-soft); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; margin-top: 28px; font-size: 12px; color: #b0b0b0; }
.footer-legal div { display: flex; gap: 20px; }

/* Responsive */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-large { grid-column: span 2; grid-row: span 1; }
  .bento-quote { display: none; }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .occasion-item.span-2, .occasion-item.span-3, .occasion-item.span-6 { grid-column: span 1; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-img { display: none; }
}

@media (max-width: 768px) {
  .site-nav { padding: 16px 20px; }
  .site-nav .nav-links { gap: 20px; font-size: 12px; }
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 50vh; }
  .split-content { padding: 40px 24px; }
  .h-gallery-item { width: 300px; }
  .h-gallery-item img { height: 50vh; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: 1fr; }
  .bento-large { grid-row: span 1; }
  .occasions-grid { grid-template-columns: 1fr; }
}
