/* =====================================================================
   MKFlo Florist — Stylesheet
   Green + Gold luxe theme, mobile-first responsive
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Dancing+Script:wght@500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--green-text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, textarea, select { font: inherit; }

:root {
  --green-deep: #1F3D2F;
  --green-dark: #163024;
  --green-soft: #2D5240;
  --green-text: #1E3A2C;
  --gold: #C9A56F;
  --gold-light: #DBC093;
  --gold-dark: #A88554;
  --gold-line: rgba(201, 165, 111, 0.32);
  --cream: #F2E9D8;
  --cream-light: #F8F1E2;
  --ivory: #FCF7EC;
  --white: #FFFFFF;
  --grey-text: #6e6650;
  --max-width: 1280px;
  --section-pad-y: 60px;
  --section-pad-x: 20px;
  --shadow-sm: 0 2px 8px rgba(31, 61, 47, 0.06);
  --shadow-md: 0 6px 24px rgba(31, 61, 47, 0.10);
}
@media (min-width: 768px) {
  :root { --section-pad-y: 80px; --section-pad-x: 40px; }
  body { font-size: 16px; }
}
@media (min-width: 1024px) {
  :root { --section-pad-y: 100px; --section-pad-x: 64px; }
}

/* TYPO */
.serif { font-family: 'Cormorant Garamond', serif; }
.cinzel { font-family: 'Cinzel', serif; letter-spacing: 0.18em; }
.script { font-family: 'Dancing Script', cursive; color: var(--gold); }
.eyebrow {
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 3px;
  color: var(--gold); font-weight: 500; text-transform: uppercase;
}
@media (min-width: 768px) { .eyebrow { font-size: 11px; letter-spacing: 4px; } }
.section-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 36px; line-height: 1.05; letter-spacing: -0.5px; color: var(--green-deep);
}
@media (min-width: 768px) { .section-title { font-size: 44px; } }
@media (min-width: 1024px) { .section-title { font-size: 52px; } }
.section-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.section-sub {
  color: var(--grey-text); font-size: 14px; line-height: 1.65;
  max-width: 580px; margin: 14px auto 0;
}
@media (min-width: 768px) { .section-sub { font-size: 15px; } }
.divider-decor {
  display: flex; align-items: center; justify-content: center; gap: 14px; margin: 18px auto;
}
.divider-decor::before, .divider-decor::after { content: ''; width: 40px; height: 1px; background: var(--gold); }
.divider-decor span { color: var(--gold); font-size: 8px; }
@media (min-width: 768px) { .divider-decor::before, .divider-decor::after { width: 50px; } }

/* LAYOUT */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 var(--section-pad-x); }
.section { padding: var(--section-pad-y) var(--section-pad-x); }
.section-cream { background: var(--cream-light); }
.section-green { background: var(--green-deep); color: var(--cream); }
.section-ivory { background: var(--ivory); }
.section-head { text-align: center; margin-bottom: 40px; }
@media (min-width: 768px) { .section-head { margin-bottom: 50px; } }
.section-head .eyebrow { display: block; }
.section-head .section-title { margin-top: 12px; }
.section-green .section-title { color: var(--cream); }
.section-green .section-sub { color: var(--cream); opacity: 0.78; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 26px;
  font-family: 'Cinzel', serif; font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-decoration: none; border: none; border-radius: 2px; cursor: pointer;
  transition: all 0.2s ease; text-transform: uppercase; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-arrow::after { content: '→'; font-size: 14px; transition: transform 0.2s; }
.btn-arrow:hover::after { transform: translateX(3px); }
.btn-gold { background: var(--gold); color: var(--green-deep); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); }
.btn-outline-gold { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--green-deep); }
.btn-outline-light { background: transparent; border: 1px solid rgba(245,237,224,0.45); color: var(--cream); }
.btn-outline-light:hover { background: var(--cream); color: var(--green-deep); border-color: var(--cream); }
.btn-outline-green { background: transparent; border: 1px solid var(--green-deep); color: var(--green-deep); }
.btn-outline-green:hover { background: var(--green-deep); color: var(--gold); }
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #1ebe57; color: white; }
.btn-block { width: 100%; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--green-deep); border-bottom: 1px solid rgba(201, 165, 111, 0.18);
}
.nav-wrap {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 var(--section-pad-x); height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 1024px) { .nav-wrap { height: 86px; } }
.nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo {
  width: 44px; height: 44px;
  background-size: cover; background-position: center;
  border-radius: 4px; flex-shrink: 0;
}
@media (min-width: 1024px) { .nav-logo { width: 54px; height: 54px; } }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-text .mk {
  font-family: 'Cinzel', serif; font-weight: 600; font-size: 13px;
  color: var(--gold); letter-spacing: 2.5px;
}
.nav-brand-text .florist {
  font-family: 'Cinzel', serif; font-weight: 400; font-size: 7px;
  color: var(--gold-dark); letter-spacing: 4px; margin-top: 3px;
}
@media (min-width: 768px) {
  .nav-brand-text .mk { font-size: 14px; letter-spacing: 3px; }
  .nav-brand-text .florist { font-size: 8px; letter-spacing: 5px; margin-top: 4px; }
}

.nav-links {
  display: none; flex: 1; justify-content: center; gap: 32px;
  font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 500;
  color: var(--cream); letter-spacing: 0.5px;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a { position: relative; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; background: var(--gold); border-radius: 50%;
}

.nav-cta { display: none; }
@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    height: 42px; padding: 0 20px;
    background: var(--gold); color: var(--green-deep);
    font-family: 'Cinzel', serif; font-size: 11px; font-weight: 600; letter-spacing: 2px;
    border-radius: 2px; transition: all 0.2s;
  }
  .nav-cta:hover { background: var(--gold-dark); color: var(--white); }
}

.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  width: 32px; height: 32px;
  align-items: center; justify-content: center; cursor: pointer;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--gold); transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.nav-mobile {
  display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--green-deep); padding: 30px 28px; z-index: 99; overflow-y: auto;
}
.nav-mobile.active { display: block; }
.nav-mobile a {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500; color: var(--cream);
  padding: 14px 0; border-bottom: 1px solid rgba(201, 165, 111, 0.18); letter-spacing: 0.5px;
}
.nav-mobile a.active { color: var(--gold); }
.nav-mobile .mobile-cta { margin-top: 28px; }

/* HERO */
.hero { position: relative; background: var(--green-deep); }
.hero-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; min-height: 640px; } }
.hero-content {
  padding: 50px var(--section-pad-x) 60px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; order: 2;
}
@media (min-width: 1024px) { .hero-content { padding: 90px 60px; order: 1; } }
.hero h1 {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 42px; line-height: 1.05; letter-spacing: -1px;
  color: var(--cream); margin: 16px 0 8px;
}
@media (min-width: 768px) { .hero h1 { font-size: 56px; } }
@media (min-width: 1024px) { .hero h1 { font-size: 70px; letter-spacing: -1.5px; } }
@media (min-width: 1280px) { .hero h1 { font-size: 78px; } }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-divider { width: 50px; height: 1px; background: var(--gold); margin: 18px 0; }
.hero-sub {
  font-size: 15px; color: var(--cream); opacity: 0.85;
  max-width: 460px; margin-bottom: 28px;
}
@media (min-width: 768px) { .hero-sub { font-size: 16px; margin-bottom: 32px; } }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-tagline {
  display: none; position: absolute; bottom: 40px; left: 60px;
  font-family: 'Dancing Script', cursive; font-size: 24px; color: var(--gold-light);
}
@media (min-width: 1024px) { .hero-tagline { display: block; } }
.hero-image {
  height: 360px; background-size: cover; background-position: center;
  background-image: url('../images/hero-mobile.jpg');
  position: relative; order: 1;
}
@media (min-width: 768px) { .hero-image { height: 460px; } }
@media (min-width: 1024px) {
  .hero-image { height: auto; background-image: url('../images/hero-desktop.jpg'); order: 2; }
  .hero-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(31,61,47,0.5) 0%, rgba(31,61,47,0) 35%);
  }
}

/* FEATURES */
.features-strip {
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--gold-line); border-bottom: 1px solid var(--gold-line);
}
@media (min-width: 768px) { .features-strip { grid-template-columns: repeat(4, 1fr); } }
.feature-cell {
  padding: 22px 16px; display: flex; align-items: center; gap: 12px;
  border-right: 1px solid var(--gold-line); border-bottom: 1px solid var(--gold-line);
}
.feature-cell:nth-child(2n) { border-right: none; }
.feature-cell:nth-last-child(-n+2) { border-bottom: none; }
@media (min-width: 768px) {
  .feature-cell { padding: 32px 22px; border-bottom: none; }
  .feature-cell:nth-child(2n) { border-right: 1px solid var(--gold-line); }
  .feature-cell:last-child { border-right: none; }
}
@media (min-width: 1024px) { .feature-cell { padding: 38px 26px; gap: 18px; } }
.feature-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--green-deep); color: var(--gold); flex-shrink: 0;
}
@media (min-width: 1024px) { .feature-icon { width: 50px; height: 50px; } }
.feature-text .ttl {
  font-family: 'Cinzel', serif; font-size: 10px; font-weight: 600;
  color: var(--green-deep); letter-spacing: 1.5px;
}
.feature-text .sub { font-size: 11px; color: var(--grey-text); margin-top: 2px; }
@media (min-width: 768px) {
  .feature-text .ttl { font-size: 11px; letter-spacing: 2px; }
  .feature-text .sub { font-size: 12px; }
}

/* PRODUCT GRID */
.product-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.product-card {
  background: white; border: 1px solid var(--gold-line); overflow: hidden;
  transition: all 0.25s; position: relative; display: block;
}
.product-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold);
}
.product-card-img {
  aspect-ratio: 1/1.05; background-size: cover; background-position: center; position: relative;
}
.product-card-tag {
  position: absolute; top: 12px; left: 12px; padding: 4px 10px;
  background: var(--green-deep); color: var(--gold);
  font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 1.5px; font-weight: 600;
}
.product-card-tag.unique { background: var(--gold); color: var(--green-deep); }
.product-card-body { padding: 14px 14px 18px; }
@media (min-width: 768px) { .product-card-body { padding: 18px 18px 22px; } }
.product-card-name {
  font-family: 'Cormorant Garamond', serif; font-size: 18px;
  color: var(--green-deep); font-weight: 500; line-height: 1.2;
}
@media (min-width: 768px) { .product-card-name { font-size: 21px; } }
.product-card-price {
  font-size: 12px; color: var(--gold-dark); margin-top: 4px; font-weight: 500; letter-spacing: 0.4px;
}
@media (min-width: 768px) { .product-card-price { font-size: 13px; } }

.product-card-cta {
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 1.5px;
  color: var(--gold-dark); margin-top: 8px;
  font-weight: 600; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s, gap 0.2s;
}
@media (min-width: 768px) { .product-card-cta { font-size: 11px; letter-spacing: 1.8px; } }
.product-card:hover .product-card-cta { color: var(--green-deep); gap: 10px; }

/* CATALOG PLACEHOLDER */
.catalog-coming-soon {
  grid-column: 1 / -1; padding: 50px 26px; text-align: center;
  border: 1px dashed var(--gold); background: var(--ivory); border-radius: 4px;
}
.catalog-coming-soon .icon {
  width: 60px; height: 60px; margin: 0 auto 16px;
  border-radius: 50%; background: var(--green-deep); color: var(--gold);
  display: grid; place-items: center;
}
.catalog-coming-soon h3 {
  font-family: 'Cormorant Garamond', serif; font-weight: 400; font-style: italic;
  font-size: 26px; color: var(--green-deep); margin-bottom: 10px;
}
@media (min-width: 768px) { .catalog-coming-soon h3 { font-size: 30px; } }
.catalog-coming-soon p { color: var(--grey-text); font-size: 14px; max-width: 420px; margin: 0 auto 18px; }

/* SPLIT BLOCK */
.split-block { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
@media (min-width: 1024px) {
  .split-block { grid-template-columns: 1.2fr 1fr; gap: 70px; }
  .split-block.reverse { grid-template-columns: 1fr 1.2fr; }
  .split-block.reverse .split-text { order: 2; }
}
.split-image {
  width: 100%; height: 280px; background-size: cover; background-position: center;
  border-radius: 4px; position: relative;
}
@media (min-width: 768px) { .split-image { height: 380px; } }
@media (min-width: 1024px) { .split-image { height: 480px; } }
.split-image-tag {
  position: absolute; bottom: 18px; left: 18px; padding: 6px 14px;
  background: rgba(31,61,47,0.85); color: var(--gold);
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 2px;
}

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial { padding: 30px 24px; background: white; border: 1px solid var(--gold-line); position: relative; }
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 17px; line-height: 1.5; color: var(--green-deep); margin-bottom: 18px;
}
.testimonial-author { font-size: 13px; color: var(--grey-text); }
.testimonial-author strong { color: var(--green-deep); display: block; font-weight: 600; margin-bottom: 2px; }

/* FOOTER */
.site-footer { background: var(--green-dark); color: var(--cream); padding: 50px var(--section-pad-x) 24px; }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 36px;
  max-width: var(--max-width); margin: 0 auto; padding-bottom: 32px;
  border-bottom: 1px solid rgba(201,165,111,0.18);
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 50px; } }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-brand .nav-logo { width: 48px; height: 48px; }
.footer-tagline { font-size: 13px; opacity: 0.72; max-width: 320px; line-height: 1.7; }
.site-footer h4 {
  font-family: 'Cinzel', serif; font-size: 11px; color: var(--gold);
  letter-spacing: 2px; margin-bottom: 16px; font-weight: 500;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 13px; opacity: 0.78; }
.footer-links a:hover { color: var(--gold); opacity: 1; }
.footer-bottom {
  max-width: var(--max-width); margin: 0 auto; padding-top: 22px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 12px; opacity: 0.6; text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* FLOATING WHATSAPP */
.float-wa {
  position: fixed; bottom: 20px; right: 20px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); z-index: 50;
  transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.05); }
.float-wa svg { width: 30px; height: 30px; color: white; }
@media (min-width: 768px) {
  .float-wa { width: 62px; height: 62px; bottom: 28px; right: 28px; }
  .float-wa svg { width: 32px; height: 32px; }
}

/* PAGE HERO */
.page-hero {
  background: var(--green-deep); color: var(--cream);
  padding: 60px var(--section-pad-x); text-align: center; position: relative;
}
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif; font-weight: 400;
  font-size: 42px; margin-top: 14px; line-height: 1.1; letter-spacing: -0.5px;
}
@media (min-width: 768px) { .page-hero { padding: 80px var(--section-pad-x); } .page-hero h1 { font-size: 56px; } }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p {
  margin-top: 18px; font-size: 15px; opacity: 0.82;
  max-width: 600px; margin-left: auto; margin-right: auto;
}

/* BREADCRUMB */
.breadcrumb {
  padding: 16px var(--section-pad-x); background: var(--ivory);
  font-size: 13px; color: var(--grey-text); border-bottom: 1px solid var(--gold-line);
}
.breadcrumb .container { padding: 0; }
.breadcrumb a { color: var(--green-deep); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 8px; color: var(--gold); }

/* FILTER */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 30px; }
@media (min-width: 768px) { .filter-bar { gap: 12px; margin-bottom: 40px; } }
.filter-pill {
  padding: 10px 20px; border: 1px solid var(--gold); color: var(--green-deep);
  font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 1.5px;
  background: white; cursor: pointer; transition: all 0.2s; font-weight: 500;
}
.filter-pill:hover { background: var(--cream); }
.filter-pill.active { background: var(--green-deep); color: var(--gold); border-color: var(--green-deep); }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 600px) { .steps-grid { grid-template-columns: 1fr 1fr; gap: 26px; } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; } }
.step-card {
  padding: 30px 24px; background: white; border: 1px solid var(--gold-line); position: relative;
}
.step-num {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 38px; color: var(--gold); font-weight: 500; line-height: 1;
}
.step-card h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500;
  color: var(--green-deep); margin: 16px 0 10px;
}
.step-card p { font-size: 14px; color: var(--grey-text); line-height: 1.6; }

/* FORM */
.form-card {
  background: white; border: 1px solid var(--gold-line);
  padding: 30px 24px; border-radius: 4px; max-width: 580px; margin: 0 auto;
}
@media (min-width: 768px) { .form-card { padding: 40px 36px; } }
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block; font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 1.5px;
  color: var(--green-deep); font-weight: 600; margin-bottom: 8px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--gold-line); background: var(--ivory);
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--green-deep);
  border-radius: 2px; outline: none; transition: border-color 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--gold); }
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 600px) { .form-row-grid { grid-template-columns: 1fr 1fr; } }
.form-row-grid > .form-row { margin-bottom: 0; }
.form-note { margin-top: 16px; font-size: 12px; color: var(--grey-text); text-align: center; }

/* CONTACT */
.contact-methods { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 768px) { .contact-methods { grid-template-columns: 1fr 1fr; } }
.contact-card {
  padding: 26px; background: white; border: 1px solid var(--gold-line);
  display: flex; align-items: flex-start; gap: 18px; transition: all 0.2s;
}
.contact-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.contact-card-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%;
  background: var(--green-deep); color: var(--gold); display: grid; place-items: center;
}
.contact-card h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  color: var(--green-deep); font-weight: 500; margin-bottom: 4px;
}
.contact-card p { font-size: 14px; color: var(--grey-text); }
.contact-card .value { font-size: 14px; color: var(--gold-dark); font-weight: 500; margin-top: 6px; }

/* MAP */
.map-wrap {
  position: relative; width: 100%; height: 360px;
  border-radius: 4px; overflow: hidden; border: 1px solid var(--gold-line);
}
@media (min-width: 768px) { .map-wrap { height: 440px; } }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* GALLERY */
.about-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (min-width: 768px) { .about-gallery { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.about-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 4px; }

/* ============ CUSTOM YOUR OWN — OPTIONS CARD ============ */
.options-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--cream-light);
  padding: 44px 26px 36px;
  position: relative;
  border: 1px solid var(--gold);
}
@media (min-width: 768px) {
  .options-card { padding: 60px 50px 45px; }
}
/* Inner double-frame border */
.options-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--gold-line);
  pointer-events: none;
}
.options-card-inner { position: relative; z-index: 2; }

.options-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--green-deep);
  text-align: center;
  margin-bottom: 8px;
  font-weight: 400;
  line-height: 1.1;
}
@media (min-width: 768px) { .options-card-title { font-size: 40px; } }

.options-card-tagline {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--gold-dark);
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .options-card-tagline { font-size: 10px; margin-bottom: 30px; }
}

.options-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--gold-line);
}
.options-row:last-of-type { border-bottom: none; }

.options-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--green-deep);
  font-weight: 600;
  margin-bottom: 6px;
}
@media (min-width: 768px) { .options-label { font-size: 11px; } }

.options-values {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--gold-dark);
  line-height: 1.55;
  font-weight: 500;
}
@media (min-width: 768px) { .options-values { font-size: 18px; line-height: 1.5; } }

.options-card-footer {
  text-align: center;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--gold-line);
}
.options-card-footer-mark {
  display: inline-flex; align-items: center; gap: 10px;
}
.options-card-footer-mark .lg {
  width: 30px; height: 30px;
  background-size: cover; background-position: center; border-radius: 2px;
}
.options-card-footer-mark .tx {
  font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 2.5px; color: var(--gold-dark);
}

/* ============ HOW TO ORDER — FLOW GRID ============ */
.flow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px 30px;
  max-width: 980px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .flow-grid { grid-template-columns: repeat(3, 1fr); gap: 44px 36px; }
}

.flow-step {
  text-align: center;
  position: relative;
  padding: 8px 12px;
}

.flow-step-icon {
  width: 84px; height: 84px;
  margin: 0 auto 18px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ivory);
  color: var(--green-deep);
  position: relative;
  transition: all 0.3s ease;
}
@media (min-width: 768px) { .flow-step-icon { width: 90px; height: 90px; } }
.flow-step:hover .flow-step-icon {
  background: var(--green-deep);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(31, 61, 47, 0.15);
}

.flow-step-num {
  position: absolute;
  top: -4px; right: -4px;
  width: 30px; height: 30px;
  background: var(--green-deep);
  color: var(--gold);
  border-radius: 50%;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  display: grid; place-items: center;
  border: 2px solid var(--cream-light);
  letter-spacing: 0.5px;
}

.flow-step h3 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--green-deep);
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}
@media (min-width: 768px) { .flow-step h3 { font-size: 12px; letter-spacing: 1.8px; } }

.flow-step p {
  font-size: 13px;
  color: var(--grey-text);
  line-height: 1.55;
  max-width: 240px;
  margin: 0 auto;
}

/* Connector arrows between steps (desktop only) */
@media (min-width: 1024px) {
  .flow-step:not(:nth-child(3n))::after {
    content: '';
    position: absolute;
    top: 38px; right: -18px;
    width: 36px; height: 1px;
    background: repeating-linear-gradient(to right, var(--gold) 0 4px, transparent 4px 8px);
  }
  .flow-step:not(:nth-child(3n))::before {
    content: '';
    position: absolute;
    top: 33px; right: -22px;
    width: 0; height: 0;
    border-left: 6px solid var(--gold);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
  }
}

/* UTILITY */
.text-center { text-align: center; }
.script-tagline {
  font-family: 'Dancing Script', cursive; font-size: 24px;
  color: var(--gold-light); margin-top: 20px;
}
@media (min-width: 768px) { .script-tagline { font-size: 28px; } }
