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

:root {
  --cream: #FAF7F2;
  --cream-2: #f4ede0;
  --green: #2D5F3F;
  --green-dark: #1a3a26;
  --red: #8B2635;
  --gold: #E8B44D;
  --ink: #2C2C2C;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: 0; }
img { max-width: 100%; display: block; }
.serif { font-family: "Playfair Display", Georgia, serif; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.eyebrow { color: var(--red); font-size: 14px; text-transform: uppercase; letter-spacing: .18em; font-weight: 700; margin-bottom: 12px; }
.section-title { color: var(--green); font: 700 clamp(36px, 5vw, 56px)/1.08 "Playfair Display", Georgia, serif; margin: 0 0 18px; }
.lead { color: rgba(44,44,44,.72); font-size: 18px; line-height: 1.7; }
.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 20;
  background: rgba(250,247,242,.82); backdrop-filter: blur(10px);
  transition: box-shadow .25s, background .25s;
}
.scrolled .site-header { background: rgba(250,247,242,.96); box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.header-inner { height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; background: transparent; color: var(--green); text-align: left; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: #1f5a37; color: var(--gold); box-shadow: 0 10px 22px rgba(0,0,0,.18);
  flex: 0 0 auto;
}
.brand-mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand-copy {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  align-items: start;
  justify-items: start;
  line-height: 1;
}
.brand-title,
.brand-sub {
  display: block;
  grid-column: 1;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}
.brand-title { font: 700 16px/1 "Playfair Display", Georgia, serif; color: var(--green); }
.brand-sub { color: var(--red); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; margin-top: 4px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav button, .footer-nav button { background: transparent; color: var(--ink); font-weight: 600; padding: 8px 0; }
.nav button:hover, .footer-nav button:hover { color: var(--green); }
.pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border-radius: 999px; padding: 13px 22px; font-weight: 800; transition: transform .2s, box-shadow .2s, background .2s;
}
.pill:hover { transform: translateY(-2px); }
.pill.green { background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(45,95,63,.25); }
.pill.gold { background: var(--gold); color: var(--ink); box-shadow: 0 18px 40px rgba(0,0,0,.2); }
.pill.ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.32); backdrop-filter: blur(8px); }
.menu-toggle { display: none; background: transparent; color: var(--green); font-size: 28px; }
.hero { min-height: 100vh; display: flex; align-items: center; padding: 128px 0 60px; position: relative; overflow: hidden; color: #fff; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg:after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,58,38,.96), rgba(45,95,63,.82), rgba(45,95,63,.38)); }
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(232,180,77,.4); background: rgba(250,247,242,.15); backdrop-filter: blur(8px); margin-bottom: 30px; }
.hero h1 { font: 700 clamp(48px, 7vw, 78px)/1.05 "Playfair Display", Georgia, serif; margin: 0 0 24px; letter-spacing: 0; }
.hero h1 em { color: var(--gold); }
.hero h1 span { display: block; font-size: clamp(30px, 5vw, 50px); font-weight: 400; color: rgba(250,247,242,.92); }
.hero p { font-size: 20px; line-height: 1.7; color: rgba(250,247,242,.9); max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 560px; margin-top: 58px; }
.trust div { border-left: 2px solid var(--gold); padding-left: 16px; }
.trust strong { display: block; font-size: 24px; color: #fff; }
.trust span { color: rgba(250,247,242,.78); font-size: 14px; }
.section { padding: 92px 0; }
.intro-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.photo-stack { position: relative; }
.photo-stack > img { width: 100%; height: 560px; object-fit: cover; border-radius: 28px; box-shadow: 0 24px 60px rgba(0,0,0,.18); }
.floating-card { position: absolute; right: -24px; bottom: -32px; max-width: 260px; background: #fff; border-radius: 20px; padding: 24px; box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.mini-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 38px; }
.mini-icon, .info-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: rgba(45,95,63,.1); color: var(--green); font-size: 22px; }
.assortment { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.assort-card, .promo-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,.08); transition: transform .3s, box-shadow .3s; position: relative; }
.assort-card:hover, .promo-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(0,0,0,.14); }
.assort-card .image { height: 240px; overflow: hidden; position: relative; }
.assort-card img, .promo-card img, .mood-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.assort-card:hover img, .promo-card:hover img, .mood-grid a:hover img { transform: scale(1.08); }
.number, .label { position: absolute; top: 14px; left: 14px; color: #fff; border-radius: 999px; padding: 7px 12px; font-size: 12px; font-weight: 800; }
.card-body { padding: 24px; }
.card-body h3 { margin: 0 0 10px; font: 700 22px/1.15 "Playfair Display", Georgia, serif; }
.promo-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 50px; }
.promo-head > div { max-width: 680px; }
.promo-card .image { aspect-ratio: 1; overflow: hidden; position: relative; background: var(--cream); }
.discount { position: absolute; top: 14px; right: 14px; width: 58px; height: 58px; border-radius: 50%; background: var(--gold); color: var(--ink); display: grid; place-items: center; font-size: 12px; font-weight: 900; transform: rotate(10deg); text-align: center; }
.price { display: flex; align-items: baseline; gap: 10px; margin-top: 16px; }
.new-price { color: var(--red); font-size: 28px; font-weight: 900; }
.old-price { color: rgba(44,44,44,.42); text-decoration: line-through; }
.why { background: var(--green); color: #fff; position: relative; overflow: hidden; }
.why .eyebrow { color: var(--gold); }
.why .section-title, .why .lead { color: #fff; }
.why .lead { color: rgba(250,247,242,.78); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); border-radius: 20px; padding: 26px; }
.feature h3 { margin: 14px 0 8px; font: 700 21px/1.2 "Playfair Display", Georgia, serif; }
.feature p { color: rgba(250,247,242,.7); line-height: 1.6; }
.mood-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.mood-grid a { border-radius: 24px; overflow: hidden; min-height: 190px; background: #fff; box-shadow: 0 12px 26px rgba(0,0,0,.08); position: relative; }
.mood-grid a:first-child { grid-column: span 2; grid-row: span 2; }
.mood-grid .caption { position: absolute; inset: auto 0 0; padding: 24px; color: #fff; background: linear-gradient(0deg, rgba(45,95,63,.8), transparent); }
.location { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.location-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 30px; }
.map-card iframe { width: 100%; height: 480px; border: 0; display: block; }
.map-card, .panel, .contact-form, .info-card { background: #fff; border-radius: 24px; box-shadow: 0 12px 34px rgba(0,0,0,.08); overflow: hidden; }
.address-card { background: var(--green); color: #fff; padding: 30px; border-radius: 24px; box-shadow: 0 16px 38px rgba(45,95,63,.25); }
.hours { padding: 28px; margin-top: 20px; }
.hours-row { display: flex; justify-content: space-between; border-bottom: 1px dashed rgba(0,0,0,.08); padding: 9px 0; font-size: 14px; }
.contact-grid { align-items: start; gap: 40px; }
.info-list { display: grid; gap: 18px; }
.info-card { display: flex; align-items: flex-start; gap: 16px; padding: 24px; }
.social-panel { background: var(--green); color: #fff; border-radius: 20px; padding: 24px; }
.contact-form { padding: 30px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; margin-bottom: 7px; font-size: 14px; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid transparent; background: var(--cream); border-radius: 14px; padding: 14px 16px; outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus { background: #fff; border-color: var(--green); }
.field textarea { min-height: 140px; resize: vertical; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.site-footer { background: var(--green-dark); color: var(--cream); padding: 76px 0 28px; position: relative; }
.site-footer .brand-title { color: var(--cream); }
.site-footer .brand-sub { color: var(--gold); }
.newsletter { background: var(--green); border: 1px solid rgba(232,180,77,.25); border-radius: 28px; padding: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; margin-bottom: 56px; }
.newsletter form { display: flex; gap: 10px; }
.newsletter input { flex: 1; min-width: 0; border-radius: 999px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.1); color: #fff; padding: 14px 18px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 46px; margin-bottom: 44px; }
.footer-grid p, .footer-grid li, .footer-bottom { color: rgba(250,247,242,.7); }
.footer-nav { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-nav button { color: rgba(250,247,242,.7); text-align: left; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-bottom a { color: var(--gold); }
.flash { position: fixed; right: 22px; bottom: 22px; z-index: 50; padding: 14px 18px; border-radius: 999px; background: var(--green); color: #fff; box-shadow: 0 15px 36px rgba(0,0,0,.2); }
.flash.error { background: var(--red); }
.empty { text-align: center; background: #fff; border-radius: 24px; padding: 50px; color: rgba(44,44,44,.62); box-shadow: 0 12px 28px rgba(0,0,0,.06); }

.admin-page { background: var(--cream); min-height: 100vh; }
.admin-top { position: sticky; top: 0; z-index: 10; background: var(--green); color: #fff; padding: 16px 0; box-shadow: 0 8px 22px rgba(0,0,0,.16); }
.admin-top .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.admin-wrap { padding: 42px 0; }
.admin-title { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 28px; }
.tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.tabs a, .admin-btn { border-radius: 999px; padding: 11px 17px; font-weight: 800; background: #fff; color: var(--green); box-shadow: 0 8px 20px rgba(0,0,0,.06); }
.tabs a.active, .admin-btn.primary { background: var(--green); color: #fff; }
.admin-card { background: #fff; border-radius: 24px; padding: 24px; box-shadow: 0 12px 34px rgba(0,0,0,.08); margin-bottom: 22px; }
.admin-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.admin-row { display: grid; grid-template-columns: 80px 1fr auto; gap: 16px; align-items: center; padding: 15px 0; border-top: 1px solid var(--cream); }
.admin-row:first-child { border-top: 0; }
.thumb { width: 76px; height: 76px; border-radius: 14px; object-fit: cover; background: var(--cream); }
.actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: end; }
.actions a, .actions button { border-radius: 10px; padding: 10px 12px; background: var(--cream); color: var(--green); font-weight: 800; }
.actions .danger { color: var(--red); }
.login { min-height: 100vh; display: grid; place-items: center; padding: 20px; }
.login .admin-card { width: min(460px, 100%); }

@media (max-width: 980px) {
  .nav, .site-header .pill.green { display: none; }
  .menu-toggle { display: block; }
  .menu-open .nav { display: grid; position: absolute; left: 16px; right: 16px; top: 82px; background: var(--cream); border-radius: 18px; padding: 18px; box-shadow: 0 18px 42px rgba(0,0,0,.18); gap: 8px; }
  .menu-open .nav button { text-align: left; padding: 12px; }
  .intro-grid, .contact-grid, .location-grid, .newsletter { grid-template-columns: 1fr; }
  .card-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-head { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .section { padding: 70px 0; }
  .hero { padding-top: 120px; }
  .brand { gap: 10px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-mark svg { width: 22px; height: 22px; stroke-width: 4; }
  .brand-title { font-size: 15px; }
  .brand-sub { font-size: 8px; margin-top: 4px; letter-spacing: .13em; }
  .trust, .mini-features, .card-grid, .feature-grid, .two, .footer-grid, .admin-grid { grid-template-columns: 1fr; }
  .mood-grid { grid-template-columns: repeat(2, 1fr); }
  .mood-grid a:first-child { grid-column: span 2; }
  .newsletter form { flex-direction: column; }
  .admin-title, .admin-row { grid-template-columns: 1fr; display: grid; }
  .actions { justify-content: start; }
}

.site-header .brand .brand-copy {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
}

.site-header .brand .brand-title,
.site-header .brand .brand-sub {
  display: block !important;
  width: 100% !important;
  flex: 0 0 auto !important;
}
