/* ---------- Base ---------- */
:root {
  --bg: #f5f1ec;
  --bg-soft: #efe9e2;
  --bg-card: #ece5dc;
  --ink: #111111;
  --ink-2: #2a2a2a;
  --muted: #6f6a64;
  --gold: #b89968;
  --line: #e0d8cd;
  --serif: "Cormorant Garamond", "Italiana", Georgia, serif;
  --display: "Italiana", "Cormorant Garamond", Georgia, serif;
  --script: "Great Vibes", "Allura", cursive;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button { font-family: inherit; cursor: pointer; }

/* ---------- Announcement ---------- */
.announcement {
  background: #0a0a0a;
  color: #fff;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 10px 16px;
}
.announcement p { margin: 0; }

/* ---------- Header ---------- */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 32px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 4px;
}
.brand-icon {
  color: var(--gold);
  display: block;
  margin-bottom: 2px;
}
.brand-name {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.32em;
  color: var(--ink);
  padding-left: 0.32em;
}
.brand-tag {
  font-family: var(--script);
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0;
  margin-top: 2px;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
}
/* Footer dark variant */
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tag { color: var(--gold); }
.footer-brand .brand-icon { color: var(--gold); }
.primary-nav {
  display: flex;
  gap: 36px;
  justify-self: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink);
}
.primary-nav a:hover { color: var(--gold); }

.header-icons {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
}
.icon-btn {
  background: transparent;
  border: 0;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: -4px;
  right: -8px;
  background: #0a0a0a;
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  padding: 1px 5px;
  min-width: 16px;
  text-align: center;
}

/* ---------- Hero ---------- */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(20px, 2.4vw, 36px);
  align-items: center;
  padding: clamp(18px, 2.6vw, 32px) clamp(20px, 3vw, 32px);
  background: var(--bg-soft);
  border-radius: 0;
}
.hero-content h1 {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin: 0 0 clamp(6px, 0.8vw, 10px);
  font-weight: 400;
}
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(12px, 1vw, 14px);
  font-style: italic;
  color: var(--ink-2);
  margin: 0 0 clamp(6px, 0.8vw, 10px);
}
.hero-copy {
  color: var(--muted);
  font-size: clamp(11px, 0.85vw, 12px);
  margin: 0 0 clamp(10px, 1.2vw, 16px);
  line-height: 1.55;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0a0a0a;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 14px 22px;
  border: 0;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold); }

.hero-image {
  height: clamp(160px, 18vw, 260px);
  border-radius: 4px;
  overflow: hidden;
  background: #f6f1ea;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-placeholder,
.vibe-img,
.ig-tile[data-label] {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.04), rgba(0,0,0,0.12)),
    repeating-linear-gradient(45deg, #d9cfc1 0 12px, #cfc4b3 12px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #6a6258;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  border: 1px solid var(--line);
}
.hero-image-placeholder small {
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-top: 6px;
  text-transform: none;
  color: #8a8278;
}
.vibe-img::after,
.ig-tile[data-label]::after {
  content: attr(data-label);
  position: absolute;
}
.vibe-img,
.ig-tile[data-label] {
  position: relative;
}
.vibe-img::before,
.ig-tile[data-label]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.0), rgba(0,0,0,0.05));
}
.vibe-img::after,
.ig-tile[data-label]::after {
  position: absolute;
  inset: auto 0 12px 0;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #6a6258;
}

/* ---------- Feature strip ---------- */
.feature-strip {
  background: #0a0a0a;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 16px 40px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-icon { color: var(--gold); flex: 0 0 auto; }
.feature-icon svg { width: 22px; height: 22px; }
.feature-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.feature-text strong {
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 500;
}
.feature-text span {
  font-size: 10px;
  color: #cfcfcf;
  margin-top: 2px;
}

/* ---------- Section title ---------- */
.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.22em;
  text-align: center;
  margin: 0 0 4px;
}
.section-title::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 8px auto 0;
}

/* ---------- Vibes ---------- */
.vibes {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 40px) clamp(20px, 3vw, 32px) clamp(20px, 2.4vw, 32px);
}
.vibe-grid {
  margin-top: clamp(14px, 1.8vw, 22px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.4vw, 18px);
}
.vibe-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: var(--ink);
}
.vibe-card .vibe-img {
  height: clamp(140px, 16vw, 200px);
  margin-bottom: 8px;
}
.vibe-card .vibe-photo {
  height: clamp(140px, 16vw, 200px);
  margin-bottom: 8px;
  border-radius: 4px;
  overflow: hidden;
  background: #f6f1ea;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vibe-card .vibe-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.vibe-card h3 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  margin: 0 0 4px;
  font-weight: 500;
}
.vibe-card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-style: italic;
  font-family: var(--serif);
  line-height: 1.45;
}
.vibe-cta {
  display: inline-block;
  align-self: center;
  background: #0a0a0a;
  color: #fff;
  padding: 8px 16px;
  font-size: 10px;
  letter-spacing: 0.22em;
}

/* ---------- Build CTA ---------- */
.build-cta {
  max-width: 1280px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0;
  background: var(--bg-card);
  align-items: stretch;
  position: relative;
}
.build-image {
  min-height: 240px;
  max-height: 340px;
  background: #f6f1ea;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.build-image .vibe-img { height: 100%; }
.build-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.build-content {
  padding: 36px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin: 0 0 14px;
}
.build-content h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: 0.06em;
  line-height: 1.05;
  margin: 0 0 12px;
}
.build-content p {
  color: var(--muted);
  font-size: 12px;
  max-width: 340px;
  line-height: 1.6;
  margin: 0 0 18px;
}
.build-badge {
  align-self: center;
  width: 130px;
  height: 130px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.22em;
  margin-right: 60px;
  gap: 8px;
}

/* ---------- Why ---------- */
.why {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px 32px;
}
.why-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.why-item {
  text-align: center;
  padding: 0 10px;
  border-right: 1px solid var(--line);
}
.why-item:last-child { border-right: 0; }
.why-item svg { color: var(--ink); margin-bottom: 8px; width: 24px; height: 24px; }
.why-item h4 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  margin: 0 0 6px;
  font-weight: 600;
}
.why-item p {
  color: var(--muted);
  font-size: 11px;
  margin: 0;
  line-height: 1.5;
}

/* ---------- Instagram strip ---------- */
.instagram-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  background: #0a0a0a;
  color: #fff;
}
.instagram-strip .ig-tile {
  aspect-ratio: 1;
  position: relative;
}
.ig-tile[data-label] { background: #1a1a1a; }
.ig-cta {
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  gap: 6px;
}
.ig-cta strong {
  font-size: 12px;
  letter-spacing: 0.18em;
  line-height: 1.35;
}
.ig-cta p {
  color: #cfcfcf;
  font-size: 11px;
  margin: 0;
}
.btn-light {
  display: inline-block;
  margin-top: 6px;
  align-self: flex-start;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 14px;
  font-size: 10px;
  letter-spacing: 0.22em;
}
.btn-light:hover { background: #fff; color: #0a0a0a; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0a0a0a;
  color: #d9d4cd;
  padding: 32px 32px 16px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr;
  gap: 28px;
}
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-tag { color: #9d978e; }
.footer-brand p {
  margin: 10px 0;
  font-size: 11px;
  color: #b6b0a8;
  max-width: 240px;
  line-height: 1.55;
}
.socials { display: flex; gap: 12px; color: #fff; }
.footer-col h5 {
  margin: 0 0 10px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #fff;
  font-weight: 600;
}
.footer-col a {
  display: block;
  font-size: 11px;
  margin-bottom: 6px;
  color: #b6b0a8;
}
.footer-col a:hover { color: #fff; }

.footer-newsletter p {
  font-size: 11px;
  color: #b6b0a8;
  margin: 0 0 10px;
  line-height: 1.5;
}
.newsletter {
  display: flex;
  border-bottom: 1px solid #4a4642;
  padding-bottom: 6px;
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: #fff;
  font-size: 11px;
  padding: 4px 0;
}
.newsletter input::placeholder { color: #8a847b; }
.newsletter button {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 16px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 22px auto 0;
  padding-top: 14px;
  border-top: 1px solid #2a2724;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: #8a847b;
}
.footer-bottom a:hover { color: #fff; }

/* ---------- WhatsApp floating contact button ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,0.24);
}
.whatsapp-fab .wa-tooltip {
  position: absolute;
  right: 70px;
  background: #0a0a0a;
  color: #fff;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 8px 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.whatsapp-fab:hover .wa-tooltip { opacity: 1; }

@media (max-width: 600px) {
  .whatsapp-fab { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .whatsapp-fab .wa-tooltip { display: none; }
}

/* ---------- Responsive ---------- */

/* Half-screen desktop / tablet landscape */
@media (max-width: 1100px) {
  .vibe-grid { grid-template-columns: repeat(3, 1fr); }
  .vibe-card .vibe-photo, .vibe-card .vibe-img { height: clamp(140px, 18vw, 200px); }
  /* Why-Choose: keep 4 columns, shrink items */
  .why-grid { gap: 18px; padding: 28px 0; }
  .why-item { padding: 0 8px; }
  .why-item svg { width: 26px; height: 26px; margin-bottom: 10px; }
  .why-item h4 { font-size: 10px; letter-spacing: 0.16em; margin-bottom: 6px; }
  .why-item p { font-size: 11px; line-height: 1.5; }
}

@media (max-width: 960px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .primary-nav { display: none; }
  /* Hero stays 2-col but tighter on half-screen */
  .hero { grid-template-columns: 1fr 1.1fr; padding: 18px 20px; gap: 20px; }
  .hero-image { height: clamp(140px, 22vw, 200px); }
  .hero-content h1 { font-size: clamp(20px, 3.2vw, 26px); }
  .feature-strip { grid-template-columns: repeat(2, 1fr); padding: 22px 20px; }
  /* Shop by Vibe — 3 in a row on half-screen */
  .vibe-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .vibe-card .vibe-photo, .vibe-card .vibe-img { height: clamp(130px, 22vw, 180px); }
  .vibe-card h3 { font-size: 10px; letter-spacing: 0.16em; }
  .vibe-card p { font-size: 11px; }
  /* Build CTA still 2-col (image + content), badge stacks */
  .build-cta { grid-template-columns: 1fr 1fr; }
  .build-image { min-height: 200px; max-height: 260px; }
  .build-content { padding: 24px 28px; }
  .build-content h2 { font-size: clamp(20px, 2.8vw, 26px); }
  .build-badge { display: none; }
  /* Why-Choose still 4 columns, even tighter */
  .why-grid { gap: 12px; padding: 24px 0; }
  .why-item { padding: 0 6px; }
  .why-item svg { width: 22px; height: 22px; margin-bottom: 8px; }
  .why-item h4 { font-size: 9px; letter-spacing: 0.12em; }
  .why-item p { font-size: 10px; line-height: 1.45; }
  .instagram-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Phone — finally collapse why-grid */
@media (max-width: 720px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .why-item:nth-child(2) { border-right: 0; }
  .why-item svg { width: 28px; height: 28px; }
  .why-item h4 { font-size: 11px; letter-spacing: 0.18em; }
  .why-item p { font-size: 12px; line-height: 1.6; }
}

/* Phone — 2-up vibe grid, single-column hero */
@media (max-width: 560px) {
  .hero { grid-template-columns: 1fr; padding: 16px 16px; gap: 14px; }
  .hero-image { height: 180px; order: -1; }
  .hero-content h1 { font-size: 22px; }
  .vibe-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .vibe-card .vibe-photo, .vibe-card .vibe-img { height: 160px; }
  .vibe-card h3 { font-size: 10px; }
  .vibe-card p { font-size: 11px; }
  .vibe-cta { font-size: 9px; padding: 8px 14px; }
  .feature-strip { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: 0 !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .build-cta { grid-template-columns: 1fr; }
  .build-image { min-height: 180px; max-height: 220px; }
  .build-content { padding: 22px 20px; }
}
