:root {
  --primary: #384150;
  --bg: #f4f5f7;
  --ink: #1a1e26;
  --accent: #f0a32a;
  --paper: #ffffff;
  --line: #dde1e8;
  --mute: #5c6472;
  --display: 'Rubik', system-ui, sans-serif;
  --body: 'Rubik', system-ui, sans-serif;
  --r: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }

.wrap { width: min(1160px, 92vw); margin-inline: auto; }

h1 { font-size: clamp(44px, 6.5vw, 82px); font-weight: 800; line-height: 1.0; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; }
h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
p { color: var(--mute); line-height: 1.65; }
.lead { font-size: clamp(16px, 1.5vw, 18px); }
.lead--inv { color: rgba(255,255,255,.78); max-width: 48ch; }
.eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.eyebrow--inv { color: rgba(240,163,42,.85); }

/* NAV */
.nav { position: sticky; top: 0; z-index: 30; background: rgba(244,245,247,.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav__in { display: flex; align-items: center; gap: 24px; height: 66px; }
.brand { font-size: 18px; font-weight: 700; text-decoration: none; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.brand__star { color: var(--accent); font-size: 20px; }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { text-decoration: none; color: var(--mute); font-size: 14px; font-weight: 500; transition: color 0.15s; }
.nav__links a:hover { color: var(--primary); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 700; font-size: 15px; padding: 13px 24px; border-radius: 999px; transition: transform 0.15s, background 0.15s; }
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { transform: translateY(-2px); background: #2a3040; }
.btn--ghost { background: transparent; color: var(--primary); box-shadow: inset 0 0 0 2px var(--primary); }
.btn--ghost:hover { background: var(--primary); color: #fff; }
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }

/* HERO */
.hero { padding: clamp(48px, 6vw, 80px) 0 clamp(48px, 6vw, 80px); }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__tag { display: inline-block; background: rgba(240,163,42,.15); color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 22px; }
.hero__left h1 { margin-bottom: 18px; }
.hero__lead { font-size: 17px; color: var(--mute); max-width: 44ch; margin-bottom: 28px; line-height: 1.65; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__facts { display: flex; gap: 32px; border-top: 1px solid var(--line); padding-top: 24px; flex-wrap: wrap; }
.hf strong { display: block; font-size: 24px; font-weight: 800; color: var(--accent); }
.hf span { font-size: 12.5px; color: var(--mute); font-weight: 500; }
.hero__right { position: relative; }
.hero__right img { width: 100%; height: clamp(340px, 44vw, 520px); object-fit: cover; border-radius: 24px; display: block; box-shadow: 0 32px 72px -24px rgba(26,30,38,.3); }
.hero__float { position: absolute; bottom: 20px; left: 20px; background: #fff; border-radius: 16px; padding: 12px 18px; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 24px -8px rgba(0,0,0,.2); }
.hero__float span { font-size: 24px; }
.hero__float p { font-size: 13px; font-weight: 700; color: var(--ink); margin: 0; }

/* SECTION */
.section { padding: clamp(60px, 8vw, 96px) 0; }
.sec-head { max-width: 54ch; margin-bottom: 44px; }
.sec-head h2 { margin-bottom: 10px; }
.sec-head p { color: var(--mute); }

/* GIFTS */
.gifts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gift-col { display: flex; flex-direction: column; gap: 16px; }
.gift-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; display: flex; flex-direction: column; flex: 1; transition: box-shadow 0.2s; }
.gift-item:hover { box-shadow: 0 6px 24px -8px rgba(26,30,38,.15); }
.gift-item--accent { background: var(--accent); border-color: transparent; }
.gift-item--accent .gift-item__tag { background: rgba(255,255,255,.25); color: #fff; }
.gift-item--accent h3 { color: #fff; }
.gift-item--accent p { color: rgba(255,255,255,.82); }
.gift-item--accent .gift-price { color: rgba(255,255,255,.95); }
.gift-item--dark { background: var(--primary); border-color: transparent; }
.gift-item--dark .gift-item__tag { background: rgba(255,255,255,.15); color: rgba(255,255,255,.75); }
.gift-item--dark h3 { color: #fff; }
.gift-item--dark p { color: rgba(255,255,255,.7); }
.gift-item--dark .gift-price { color: var(--accent); }
.gift-item__tag { align-self: flex-start; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); background: rgba(240,163,42,.12); padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }
.gift-item h3 { color: var(--ink); font-size: 17px; margin-bottom: 8px; }
.gift-item p { color: var(--mute); font-size: 14px; flex: 1; }
.gift-price { font-weight: 700; font-size: 16px; color: var(--accent); margin-top: 14px; }

/* WRAPPING */
.wrapping { background: var(--ink); padding: clamp(60px, 8vw, 96px) 0; }
.wrapping__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 72px); align-items: start; }
.wrapping h2 { color: #fff; margin: 10px 0 16px; }
.wrapping__steps { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0 28px; }
.ws { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 16px; }
.ws__num { display: block; font-size: 24px; font-weight: 800; color: var(--accent); margin-bottom: 6px; }
.ws p { font-size: 14px; color: rgba(255,255,255,.65); margin: 0; }
.wrapping__note { font-size: 13.5px; color: rgba(255,255,255,.45); }
.wrap-option { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r); padding: 20px; margin-bottom: 12px; }
.wrap-option--highlight { background: rgba(240,163,42,.12); border-color: rgba(240,163,42,.25); }
.wrap-option strong { display: block; color: #fff; font-size: 15px; margin-bottom: 6px; }
.wrap-option p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.55; }
.wrap-option span { display: inline-block; margin-top: 8px; font-size: 13px; font-weight: 700; color: var(--accent); }

/* OCCASIONS */
.occasions__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.occ { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
.occ__icon { font-size: 32px; display: block; margin-bottom: 14px; }
.occ strong { display: block; font-size: 16px; color: var(--ink); margin-bottom: 8px; }
.occ p { font-size: 14px; color: var(--mute); line-height: 1.55; }

/* CONTACT */
.contact { padding: clamp(56px, 7vw, 88px) 0; }
.contact__wrap { background: linear-gradient(135deg, var(--primary) 0%, #252b38 100%); border-radius: 24px; padding: clamp(36px, 5vw, 60px); display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.contact__main h2 { color: #fff; margin-bottom: 10px; }
.contact__main p { color: rgba(255,255,255,.78); max-width: 44ch; }
.contact__time { margin: 8px 0 16px !important; color: rgba(255,255,255,.55) !important; font-size: 14px; }
.contact__social { display: flex; gap: 20px; flex-wrap: wrap; }
.contact__social a { color: rgba(255,255,255,.9); text-decoration: none; font-weight: 600; font-size: 15px; }
.contact__social a:hover { color: var(--accent); }
.contact__box { text-align: right; flex-shrink: 0; }
.contact__box p { color: rgba(255,255,255,.7); max-width: 26ch; margin-bottom: 18px; font-size: 15px; text-align: right; }

/* FOOTER */
.foot { background: #0f1219; padding: 28px 0; }
.foot__in { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; }
.foot__in span:first-child { color: rgba(255,255,255,.85); font-weight: 600; }
.foot__in span:last-child { color: rgba(255,255,255,.35); }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__right img { height: 280px; }
  .gifts__grid { grid-template-columns: 1fr 1fr; }
  .wrapping__inner { grid-template-columns: 1fr; }
  .contact__wrap { flex-direction: column; }
  .contact__box { text-align: left; }
  .contact__box p { text-align: left; }
  .nav__links { display: none; }
}
@media (max-width: 520px) {
  .gifts__grid { grid-template-columns: 1fr; }
  .occasions__list { grid-template-columns: 1fr 1fr; }
  .wrapping__steps { grid-template-columns: 1fr; }
  .hero__facts { gap: 20px; }
}
