/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  background: #fbf6f0;
  color: #463a33;
  font-family: 'Mulish', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
::selection { background: #e9c3b2; color: #463a33; }
input::placeholder, textarea::placeholder { color: #b3a294; }
input:focus, textarea:focus, select:focus { outline: none; border-color: #bc6a4d !important; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { margin: 0; }
p { margin: 0; }

/* === Decorative Backgrounds === */
.bg-floral {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url('project/assets/floral.svg');
  background-repeat: repeat; background-size: 380px 380px; opacity: 0.82;
}
.bg-gradient {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(1100px 700px at 12% -5%, rgba(221,138,160,0.10), transparent 60%),
    radial-gradient(1000px 760px at 105% 18%, rgba(224,127,87,0.10), transparent 55%),
    radial-gradient(900px 700px at 50% 108%, rgba(142,156,124,0.10), transparent 60%);
}

/* === Layout === */
.container {
  max-width: 1180px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

/* === Header === */
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(251,246,240,0.82);
  border-bottom: 1px solid rgba(188,106,77,0.12);
}
.header-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 14px clamp(20px, 5vw, 64px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo-link { display: flex; align-items: center; line-height: 0; }
.logo-img { height: 88px; width: auto; }

/* Desktop nav */
.nav-desktop {
  display: flex; align-items: center; gap: clamp(14px, 2vw, 30px);
}
.nav-link {
  color: #5f5249; font-size: 0.95rem; font-weight: 500;
  transition: color 0.18s;
}
.nav-link:hover { color: #bc6a4d; }
.nav-cta { margin-left: 4px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #8a5440; border-radius: 2px;
}

/* Mobile nav */
.nav-mobile {
  display: flex; flex-direction: column;
  padding: 8px clamp(20px, 5vw, 64px) 22px;
  gap: 4px;
  border-top: 1px solid rgba(188,106,77,0.12);
}
.nav-mobile[hidden] { display: none; }
.nav-mobile-link {
  color: #5f5249; font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(188,106,77,0.10);
  transition: color 0.18s;
}
.nav-mobile-link:hover { color: #bc6a4d; }
.nav-mobile-cta {
  display: block; margin-top: 10px;
  background: #bc6a4d; color: #fff;
  padding: 13px 24px; border-radius: 999px;
  font-weight: 600; text-align: center;
  transition: background 0.18s;
}
.nav-mobile-cta:hover { background: #a2563b; }

/* === Buttons === */
.btn-primary {
  display: inline-block;
  background: #bc6a4d; color: #fff;
  padding: 11px 24px; border-radius: 999px;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.02em;
  transition: background 0.18s;
}
.btn-primary:hover { background: #a2563b; }
.btn-outline {
  display: inline-block;
  border: 1.5px solid #bc6a4d; color: #a2563b;
  padding: 10.5px 22px; border-radius: 999px;
  font-weight: 600;
  transition: background 0.18s;
}
.btn-outline:hover { background: rgba(188,106,77,0.08); }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-lg.btn-outline { padding: 13.5px 30px; }

/* === Section base === */
.section { padding: clamp(56px, 8vw, 110px) 0; position: relative; z-index: 1; }
.section-alt {
  background: rgba(246,233,225,0.6);
  border-top: 1px solid rgba(188,106,77,0.10);
  border-bottom: 1px solid rgba(188,106,77,0.10);
}
.section-header { text-align: center; max-width: 40em; margin: 0 auto clamp(40px, 6vw, 60px); }
.section-script {
  margin: 0 0 6px; font-family: 'Dancing Script', cursive;
  font-size: 1.6rem; color: #cf8a5f;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.1; color: #463a33;
}
.section-desc { margin-top: 16px; color: #6e5f56; }

/* === Hero === */
.section-hero {
  scroll-margin-top: 90px; position: relative; z-index: 1;
}
.corner {
  position: absolute; top: 0; width: clamp(150px, 22vw, 280px); opacity: 0.85; pointer-events: none;
}
.corner-left { left: -10px; }
.corner-right { right: -10px; transform: scaleX(-1); }
.hero-inner {
  padding: clamp(48px, 7vw, 90px) clamp(20px, 5vw, 64px) clamp(40px, 6vw, 70px);
  display: flex; flex-wrap: wrap; align-items: center; gap: clamp(32px, 5vw, 64px);
}
.hero-text { flex: 1 1 380px; min-width: 300px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.8rem; font-weight: 700; color: #8a4226; margin-bottom: 18px;
}
.hero-title {
  font-family: 'Dancing Script', cursive; font-weight: 700;
  color: #bc6a4d; font-size: clamp(2.8rem, 7vw, 4.8rem); line-height: 1.0;
}
.hero-tagline {
  margin-top: 14px;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500;
  color: #463a33; font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.2;
}
.hero-desc { margin-top: 24px; max-width: 30em; color: #6e5f56; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; align-items: center; }
.hero-phone { margin-top: 22px; color: #8a7a6f; font-size: 0.95rem; }
.phone-link { color: #a2563b; font-weight: 700; }
.phone-link:hover { color: #bc6a4d; }

.hero-image-wrap { flex: 1 1 380px; min-width: 300px; position: relative; }
.hero-image-deco {
  position: absolute; inset: auto -10px -14px auto;
  width: 64%; height: 64%;
  background: rgba(188,106,77,0.10); border-radius: 24px; transform: rotate(3deg);
}
.hero-img {
  position: relative; width: 100%;
  height: clamp(380px, 52vw, 560px); object-fit: cover;
  border-radius: 22px; box-shadow: 0 30px 60px -28px rgba(70,40,25,0.5);
  border: 6px solid #fff;
}

/* Trust bar */
.trust-bar {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  border-top: 1px solid rgba(188,106,77,0.14);
  padding: clamp(28px, 4vw, 40px) clamp(20px, 5vw, 64px) clamp(40px, 6vw, 64px);
}
.trust-item { flex: 1 1 200px; text-align: center; padding: 8px 12px; }
.trust-icon { color: #cf8a5f; font-size: 1.3rem; line-height: 1; }
.trust-title {
  margin-top: 8px;
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: #463a33;
}
.trust-sub { margin-top: 2px; color: #8a7a6f; font-size: 0.92rem; }

/* === Bouquets === */
.bouquets-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}
.bouquet-card {
  background: #fff; border: 1px solid rgba(188,106,77,0.12);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 18px 44px -28px rgba(70,40,25,0.4);
  transition: transform 0.22s, box-shadow 0.22s;
}
.bouquet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 54px -26px rgba(70,40,25,0.5);
}
.bouquet-img { width: 100%; height: 240px; object-fit: cover; }
.bouquet-body { padding: 22px 22px 26px; }
.bouquet-header-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.bouquet-name {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 1.7rem; color: #463a33;
}
.bouquet-price { color: #bc6a4d; font-weight: 600; font-size: 0.82rem; white-space: nowrap; }
.bouquet-desc { margin-top: 8px; color: #6e5f56; font-size: 0.97rem; }
.bouquets-cta-text {
  text-align: center; margin-top: clamp(32px, 5vw, 48px);
  color: #8a7a6f; font-size: 0.97rem;
}
.text-link { color: #a2563b; font-weight: 600; border-bottom: 1px solid rgba(162,86,59,0.4); }
.text-link:hover { color: #bc6a4d; }
.accent { color: #a2563b; }

/* === Origin === */
.origin-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(18px, 2.5vw, 26px);
}
.origin-card {
  background: #fff; border: 1px solid rgba(188,106,77,0.12);
  border-radius: 20px; padding: 34px 28px; text-align: center;
  box-shadow: 0 16px 40px -30px rgba(70,40,25,0.4);
}
.origin-icon { color: #cf8a5f; font-size: 1.5rem; }
.origin-name {
  margin-top: 10px;
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 1.6rem; color: #463a33;
}
.origin-desc { margin-top: 10px; color: #6e5f56; font-size: 0.97rem; }

/* === Services === */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}
.service-card {
  background: #fff; border: 1px solid rgba(188,106,77,0.12);
  border-radius: 18px; padding: 26px 24px;
  display: flex; gap: 14px; align-items: flex-start;
  box-shadow: 0 14px 36px -30px rgba(70,40,25,0.4);
}
.service-icon { color: #cf8a5f; font-size: 1.25rem; line-height: 1.4; flex-shrink: 0; }
.service-name {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 1.45rem; color: #463a33; line-height: 1.2;
}
.service-desc { margin-top: 6px; color: #6e5f56; font-size: 0.95rem; }
.delivery-banner {
  margin-top: clamp(28px, 4vw, 40px);
  background: #bc6a4d; border-radius: 20px;
  padding: clamp(26px, 4vw, 40px);
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 14px 36px; text-align: center;
}
.delivery-title {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 500;
}
.delivery-note { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

/* === About === */
.about-inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: clamp(32px, 5vw, 64px);
}
.about-image-wrap { flex: 1 1 320px; min-width: 280px; position: relative; }
.about-image-deco {
  position: absolute; inset: -12px -12px auto auto;
  width: 60%; height: 60%;
  background: rgba(188,106,77,0.12); border-radius: 22px; transform: rotate(-3deg);
}
.about-img {
  position: relative; width: 100%;
  height: clamp(340px, 46vw, 500px); object-fit: cover;
  border-radius: 22px; border: 6px solid #fff;
  box-shadow: 0 28px 56px -30px rgba(70,40,25,0.5);
}
.about-text { flex: 1 1 360px; min-width: 300px; }
.about-script { margin: 0 0 6px; font-family: 'Dancing Script', cursive; font-size: 1.6rem; color: #cf8a5f; }
.about-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.1; color: #463a33;
}
.about-desc { margin-top: 20px; color: #6e5f56; font-size: 1.06rem; }
.about-desc + .about-desc { margin-top: 14px; }
.about-quote {
  margin-top: 22px;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.5rem; color: #a2563b;
}

/* === Gallery === */
.gallery-featured {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(14px, 2.2vw, 22px); margin-bottom: clamp(20px, 3vw, 30px);
}
.gallery-btn {
  position: relative; border: none; padding: 0; cursor: zoom-in;
  background: none; border-radius: 18px; overflow: hidden;
  box-shadow: 0 18px 44px -28px rgba(70,40,25,0.45);
  display: block; transition: transform 0.2s;
}
.gallery-btn:hover { transform: translateY(-3px); }
.gallery-featured-img { width: 100%; height: 360px; object-fit: cover; display: block; }
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 24px 18px; text-align: left;
  background: linear-gradient(to top, rgba(50,32,22,0.82), rgba(50,32,22,0.0));
}
.gallery-caption-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 1.8rem; color: #fff; line-height: 1.1;
}
.gallery-caption-sub { margin-top: 4px; color: rgba(255,255,255,0.88); font-size: 0.95rem; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px;
}
.gallery-tile-btn {
  border: none; padding: 0; cursor: zoom-in; background: none;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 14px 36px -30px rgba(70,40,25,0.45);
  display: block; transition: transform 0.2s;
}
.gallery-tile-btn:hover { transform: translateY(-3px); }
.gallery-tile {
  width: 100%; height: 260px;
  background-size: cover; background-position: center; display: block;
}

/* === Contact === */
.contact-inner {
  display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 44px); align-items: flex-start;
}
.contact-form-card {
  flex: 1 1 340px; min-width: 300px;
  background: #fff; border: 1px solid rgba(188,106,77,0.12);
  border-radius: 22px; padding: clamp(24px, 3.5vw, 36px);
  box-shadow: 0 20px 50px -32px rgba(70,40,25,0.45);
}
.contact-info { flex: 1 1 300px; min-width: 280px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }

.form-label { display: block; font-weight: 600; font-size: 0.9rem; color: #5f5249; margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid rgba(188,106,77,0.25); border-radius: 12px;
  font-family: inherit; font-size: 1rem; color: #463a33; background: #fdfaf6;
  margin-bottom: 18px; transition: border-color 0.18s;
}
.form-textarea { resize: vertical; margin-bottom: 22px; }
.form-submit {
  width: 100%; background: #bc6a4d; color: #fff;
  border: none; padding: 15px; border-radius: 999px;
  font-family: inherit; font-weight: 600; font-size: 1rem;
  letter-spacing: 0.02em; cursor: pointer; transition: background 0.18s;
}
.form-submit:hover { background: #a2563b; }

.thank-you { text-align: center; padding: 24px 8px; }
.thank-you-icon { color: #cf8a5f; font-size: 2rem; }
.thank-you-title {
  margin-top: 10px;
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 1.7rem; color: #463a33;
}
.thank-you-desc { margin-top: 8px; color: #6e5f56; }
.thank-you[hidden] { display: none; }
form[hidden] { display: none; }

.contact-label {
  text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.74rem; font-weight: 600; color: #bc6a4d;
}
.contact-phone-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 2px; }
.contact-phone-link {
  font-family: 'Cormorant Garamond', serif; font-size: 1.7rem;
  color: #463a33; font-weight: 600; transition: color 0.18s;
}
.contact-phone-link:hover { color: #bc6a4d; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px;
  flex-shrink: 0; transition: background 0.18s;
}
.icon-btn-phone { background: #bc6a4d; color: #fff; }
.icon-btn-phone:hover { background: #a2563b; }
.icon-btn-wa { background: #25d366; color: #fff; }
.icon-btn-wa:hover { background: #1da851; }
.contact-email-link { font-size: 1.05rem; color: #5f5249; transition: color 0.18s; }
.contact-email-link:hover { color: #bc6a4d; }
.contact-address { margin-top: 2px; color: #5f5249; }
.contact-address-sub { color: #8a7a6f; font-size: 0.95rem; }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.social-link {
  border: 1.5px solid rgba(188,106,77,0.3); color: #a2563b;
  padding: 9px 18px; border-radius: 999px; font-weight: 600; font-size: 0.92rem;
  transition: background 0.18s;
}
.social-link:hover { background: rgba(188,106,77,0.08); }
.delivery-note-box {
  background: #fff; border: 1px solid rgba(188,106,77,0.12);
  border-radius: 16px; padding: 18px 20px;
}
.delivery-note-text { color: #5f5249; font-size: 0.97rem; }
.delivery-note-text strong { color: #a2563b; }
.delivery-note-text a { color: #a2563b; font-weight: 700; }
.delivery-note-text a:hover { color: #bc6a4d; }

/* === Footer === */
.site-footer {
  position: relative; z-index: 1;
  background: #463a33; color: #e9ddd3;
  padding: clamp(40px, 6vw, 64px) 0 30px;
}
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); text-align: center; }
.footer-brand { font-family: 'Dancing Script', cursive; font-weight: 700; font-size: 2rem; color: #eaa07e; }
.footer-tagline { margin-top: 6px; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.2rem; color: #d8c6b8; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: center; margin-top: 22px; font-size: 0.92rem; }
.footer-link { color: #cbb9aa; transition: color 0.18s; }
.footer-link:hover { color: #eaa07e; }
.footer-copy { margin-top: 22px; color: #9b8b7e; font-size: 0.84rem; }

/* === Lightbox === */
.lightbox {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(50,32,22,0.86); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; cursor: zoom-out;
}
.lightbox[hidden] { display: none; }
.lightbox-img {
  width: 92vw; height: 88vh;
  background-size: contain; background-position: center; background-repeat: no-repeat;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,0.55));
}
.lightbox-close {
  position: fixed; top: 22px; right: 24px;
  width: 46px; height: 46px; border-radius: 999px;
  border: none; background: rgba(255,255,255,0.92);
  color: #463a33; font-size: 1.4rem; cursor: pointer; line-height: 1;
  transition: background 0.18s;
}
.lightbox-close:hover { background: #fff; }

/* === Responsive === */
@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
}
@media (min-width: 861px) {
  .hamburger { display: none; }
  .nav-mobile { display: none !important; }
}
