/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:       #ffffff;
  --dark:        #1e1d1b;
  --blush:       #f7d2de;
  --green:       #b1c476;
  --yellow:      #ffd878;
  --blush-light: #fdf0f4;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}

h2 { font-size: clamp(2rem, 5vw, 3.25rem); }
h3 { font-size: 1.5rem; }

p { font-size: 1rem; color: #4a4a48; }

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 2.25rem;
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  transition: opacity 0.2s, transform 0.2s;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-blush { background: var(--blush); color: var(--dark); }
.btn-dark  { background: var(--dark);  color: var(--white); }
.btn-green { background: var(--green); color: var(--dark); }

/* ── Section Labels ───────────────────────────────────── */
.section-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.section-label.light { color: var(--yellow); }

.section-intro {
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0.75rem auto 2.5rem;
  text-align: center;
  color: #666;
}

/* ── NAV ──────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 14px rgba(0,0,0,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
}

.nav-logo img { height: 52px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--dark);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-instagram { color: var(--green) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
  line-height: 1;
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  background-color: var(--dark);
  background-image: linear-gradient(rgba(30,29,27,0.55), rgba(30,29,27,0.55)),
    url('../images/gallery/473106941_122198656508171755_2662934097372106152_n.jpg');
  background-size: cover;
  background-position: center;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.hero-logo { width: min(460px, 78vw); }

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  color: rgba(255,255,255,0.8);
  font-style: italic;
  font-weight: 300;
  max-width: 500px;
  line-height: 1.6;
}

/* ── ABOUT ────────────────────────────────────────────── */
.about {
  padding: 6rem 0;
  background: var(--blush-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 { margin-bottom: 1.25rem; }
.about-text p  { margin-bottom: 1rem; }
.about-text .btn { margin-top: 0.75rem; }

.about-image { display: flex; justify-content: center; align-items: flex-start; }
.about-image img {
  width: 100%;
  max-width: 440px;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 3px;
}

/* ── THE STAND ────────────────────────────────────────── */
.the-stand {
  padding: 6rem 0;
  background: var(--white);
  text-align: center;
}

.stand-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stand-card {
  background: var(--blush);
  border-radius: 3px;
  padding: 2.75rem 2rem;
}

.stand-card-icon {
  font-size: 2rem;
  margin-bottom: 0.9rem;
}

.stand-card h3 { margin-bottom: 0.9rem; }
.stand-card p  { color: var(--dark); margin-bottom: 0.2rem; }

.stand-card-note {
  font-size: 0.82rem !important;
  color: #888 !important;
  margin-top: 0.6rem !important;
}

.stand-card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--dark);
  border-bottom: 1.5px solid var(--dark);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.stand-card-link:hover { opacity: 0.6; }

/* ── BLOOM BAR ────────────────────────────────────────── */
.bloom-bar {
  padding: 6rem 0;
  background: var(--dark);
  color: var(--white);
}

.bloom-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.bloom-bar-text h2  { color: var(--white); margin-bottom: 1.25rem; }
.bloom-bar-text p   { color: rgba(255,255,255,0.72); margin-bottom: 1rem; }
.bloom-bar-text .btn { margin-top: 0.75rem; }

.bloom-bar-accent { display: flex; justify-content: center; }
.bloom-bar-accent img { width: min(280px, 100%); opacity: 0.12; }

/* ── FOR FLORISTS ─────────────────────────────────────── */
.for-florists {
  padding: 6rem 0;
  background: var(--white);
  border-top: 1px solid #eee;
}

.for-florists-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.for-florists-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 3px;
}

.for-florists-text h2 { margin-bottom: 1.25rem; }
.for-florists-text p  { margin-bottom: 1rem; }
.for-florists-text .btn { margin-top: 0.75rem; }

/* ── GALLERY ──────────────────────────────────────────── */
.gallery {
  padding: 6rem 0;
  background: var(--white);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.gallery-item {
  background: var(--blush);
  aspect-ratio: 1;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-flower { font-size: 3rem; opacity: 0.35; }

.gallery-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #aaa;
  font-style: italic;
}

.gallery-cta { margin-top: 2.5rem; }

/* ── FIND US ──────────────────────────────────────────── */
.find-us {
  padding-top: 6rem;
  background: var(--blush-light);
  text-align: center;
}

.find-us-header { padding-bottom: 2.5rem; }

.map-container { line-height: 0; }
.map-container iframe { display: block; width: 100%; }

.find-us-details {
  padding: 3.5rem 1.5rem 5rem;
  display: flex;
  justify-content: center;
}

.find-us-card {
  background: var(--white);
  border-radius: 3px;
  padding: 2.5rem 3.5rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.find-us-card strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.find-us-card p { margin-bottom: 0.4rem; }

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo { width: 190px; opacity: 0.88; }

.footer-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--blush); }

.footer-copy {
  color: rgba(255,255,255,0.28);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }

  .about-grid,
  .bloom-bar-grid,
  .for-florists-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .about-image,
  .bloom-bar-accent { display: none; }

  .for-florists-image { display: none; }

  .stand-cards { grid-template-columns: 1fr; }

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

  .find-us-card { padding: 2rem 1.5rem; }
}
