:root {
  --v2-bg: #FAF7F2;
  --v2-bg-alt: #F2EDE3;
  --v2-ink: #1E1A16;
  --v2-muted: #7E766E;
  --v2-accent: #B43B3B;
  --v2-gold: #BE9A4C;
  --v2-line: rgba(30, 26, 22, 0.12);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--v2-bg);
  color: var(--v2-ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, blockquote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
em { font-style: italic; color: var(--v2-accent); }

.v2-container { width: min(1180px, 92%); margin: 0 auto; }
.v2-kicker {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v2-muted);
  margin-bottom: 14px;
}
.v2-muted { color: var(--v2-muted); }

/* ============ HEADER ============ */
.v2-header {
  position: sticky;
  top: 60px;
  z-index: 40;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--v2-line);
}
.v2-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  position: relative;
}
.v2-brand { display: flex; align-items: center; gap: 14px; }
.v2-brand-logo { width: 44px; height: 44px; }
.v2-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.v2-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.v2-brand-sub {
  font-size: .72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--v2-muted);
  margin-top: 3px;
}
.v2-nav { display: flex; align-items: center; gap: 34px; }
.v2-nav a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--v2-ink);
  transition: color 0.2s;
}
.v2-nav a:hover { color: var(--v2-accent); }
.v2-nav-cta {
  padding: 10px 22px;
  border: 1px solid var(--v2-ink);
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
}
.v2-nav-cta:hover { background: var(--v2-ink); color: #fff; }
.v2-toggle { display: none; background: none; border: 0; cursor: pointer; width: 36px; height: 28px; }
.v2-toggle span {
  display: block; height: 2px; background: var(--v2-ink); margin: 7px 0; transition: .25s;
}

/* ============ HERO ============ */
.v2-hero { padding: 110px 0 120px; position: relative; }
.v2-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(190, 154, 76, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(180, 59, 59, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.v2-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.v2-hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  margin: 4px 0 22px;
  letter-spacing: -0.02em;
}
.v2-lead {
  font-size: 1.12rem;
  color: var(--v2-muted);
  max-width: 540px;
  margin-bottom: 38px;
}
.v2-cta-row { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.v2-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: 0.02em;
  transition: all 0.25s;
  border: 0;
  cursor: pointer;
}
.v2-btn-dark {
  background: var(--v2-ink);
  color: #fff;
}
.v2-btn-dark:hover { background: var(--v2-accent); }
.v2-btn-link {
  padding: 16px 0;
  color: var(--v2-ink);
  border-bottom: 1px solid var(--v2-ink);
}
.v2-btn-link:hover { color: var(--v2-accent); border-color: var(--v2-accent); }
.v2-btn-block { width: 100%; justify-content: center; margin-top: 24px; }

.v2-hero-art { display: flex; justify-content: center; }
.v2-circle {
  width: min(420px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, #F2EDE3 0%, #EADBBE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 40px 80px rgba(190, 154, 76, 0.2);
  position: relative;
}
.v2-circle::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(30, 26, 22, 0.15);
}
.v2-circle img {
  width: 62%;
  animation: v2-bob 4s ease-in-out infinite;
}
@keyframes v2-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-10px) rotate(2deg); }
}

/* ============ MARQUEE ============ */
.v2-marquee {
  background: var(--v2-ink);
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
}
.v2-marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: v2-scroll 28s linear infinite;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
}
@keyframes v2-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
section { padding: 120px 0; }
.v2-section-head {
  max-width: 720px;
  margin-bottom: 60px;
}
.v2-section-head h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.3rem);
}

/* ============ PRODUCTS ============ */
.v2-products { background: var(--v2-bg); }
.v2-product-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.v2-product {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  padding: 46px 0;
  border-top: 1px solid var(--v2-line);
  align-items: center;
  transition: padding 0.3s;
}
.v2-product:last-child { border-bottom: 1px solid var(--v2-line); }
.v2-product:hover { padding-left: 20px; }
.v2-product-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 4rem;
  font-weight: 500;
  color: var(--v2-gold);
  line-height: 1;
}
.v2-product-body h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.v2-product-body p {
  font-size: 1.05rem;
  color: var(--v2-muted);
  max-width: 620px;
}

/* ============ STORY ============ */
.v2-story { background: var(--v2-bg-alt); }
.v2-story-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.v2-story-copy h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  margin-bottom: 26px;
}
.v2-story-copy p {
  font-size: 1.08rem;
  color: var(--v2-muted);
  margin-bottom: 30px;
}
.v2-bullets {
  list-style: none;
  display: grid;
  gap: 18px;
}
.v2-bullets li {
  padding-left: 26px;
  position: relative;
  font-size: 1rem;
}
.v2-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 14px; height: 1px;
  background: var(--v2-ink);
}
.v2-bullets strong { font-weight: 600; }
.v2-story-quote {
  padding: 44px 38px;
  background: #fff;
  border: 1px solid var(--v2-line);
  position: relative;
}
.v2-story-quote::before {
  content: '"';
  position: absolute;
  top: -20px; left: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--v2-gold);
}
.v2-story-quote blockquote p {
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.v2-story-quote footer {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  color: var(--v2-muted);
  letter-spacing: 0.04em;
}

/* ============ LOCATION ============ */
.v2-location { background: var(--v2-bg); }
.v2-location-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  border: 1px solid var(--v2-line);
}
.v2-map { min-height: 440px; }
.v2-map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; display: block; }
.v2-location-info {
  padding: 50px 44px;
  background: #fff;
  border-left: 1px solid var(--v2-line);
}
.v2-location-info h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.v2-hours {
  margin: 30px 0;
  padding-top: 24px;
  border-top: 1px solid var(--v2-line);
}
.v2-hours h4 {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--v2-muted);
  margin-bottom: 14px;
}
.v2-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: .95rem;
}

/* ============ INSTAGRAM ============ */
.v2-instagram { background: var(--v2-bg-alt); }
.v2-ig-link {
  color: var(--v2-accent);
  font-style: italic;
  border-bottom: 2px solid var(--v2-accent);
}
.v2-ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--v2-line);
  background: #fff;
}
.v2-ig-post {
  position: relative;
  display: block;
  height: 460px;
  overflow: hidden;
  border-right: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  background: #fff;
  transition: background 0.25s;
}
.v2-ig-post:nth-child(3n) { border-right: 0; }
.v2-ig-post:nth-last-child(-n+3) { border-bottom: 0; }
.v2-ig-post iframe {
  width: 100%;
  height: 900px;
  border: 0;
  pointer-events: none;
}
.v2-ig-cta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 72px;
  padding-bottom: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 55%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: .85rem;
  font-weight: 600;
  color: var(--v2-accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}
.v2-ig-empty { text-align: center; }

/* ============ CONTACT ============ */
.v2-contact { background: var(--v2-ink); color: #fff; padding: 130px 0; }
.v2-contact .v2-kicker { color: rgba(255, 255, 255, 0.55); }
.v2-contact-head {
  text-align: center;
  margin-bottom: 60px;
}
.v2-contact-head h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin-bottom: 12px;
  color: #fff;
}
.v2-contact-head .v2-muted { color: rgba(255, 255, 255, 0.6); }
.v2-contact-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.v2-contact-row {
  display: grid;
  grid-template-columns: 200px 1fr 40px;
  align-items: center;
  padding: 28px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: padding 0.25s, background 0.25s;
}
.v2-contact-row:hover {
  padding-left: 30px;
  background: rgba(255, 255, 255, 0.04);
}
.v2-contact-label {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.v2-contact-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
}
.v2-contact-arrow {
  font-size: 1.5rem;
  text-align: right;
  opacity: 0.6;
  transition: transform 0.25s, opacity 0.25s;
}
.v2-contact-row:hover .v2-contact-arrow {
  opacity: 1;
  transform: translateX(6px);
}

/* ============ FOOTER ============ */
.v2-footer {
  background: var(--v2-ink);
  color: rgba(255, 255, 255, 0.6);
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.v2-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .88rem;
}
.v2-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}
.v2-footer-brand img { width: 28px; height: 28px; }

/* ============ WA FLOAT ============ */
.v2-wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
  z-index: 60;
  border-radius: 50%;
  transition: transform .2s;
}
.v2-wa-float:hover { transform: scale(1.08); }
.v2-wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .v2-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--v2-bg);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--v2-line);
  }
  .v2-nav.open { display: flex; }
  .v2-toggle { display: block; }

  section { padding: 80px 0; }
  .v2-hero { padding: 70px 0 90px; }
  .v2-hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .v2-hero-copy { order: 2; }
  .v2-hero-art { order: 1; }
  .v2-circle { width: min(280px, 80%); }
  .v2-cta-row { justify-content: center; }

  .v2-product { grid-template-columns: 1fr; gap: 10px; padding: 36px 0; }
  .v2-product-num { font-size: 2.6rem; }

  .v2-story-inner { grid-template-columns: 1fr; gap: 50px; }
  .v2-location-grid { grid-template-columns: 1fr; }
  .v2-location-info { border-left: 0; border-top: 1px solid var(--v2-line); }

  .v2-ig-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-ig-post:nth-child(3n) { border-right: 1px solid var(--v2-line); }
  .v2-ig-post:nth-child(2n) { border-right: 0; }
  .v2-ig-post:nth-last-child(-n+3) { border-bottom: 1px solid var(--v2-line); }
  .v2-ig-post:nth-last-child(-n+2) { border-bottom: 0; }

  .v2-contact-row {
    grid-template-columns: 1fr 30px;
    gap: 4px;
    padding: 22px 10px;
  }
  .v2-contact-row .v2-contact-label {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }
  .v2-contact-value { font-size: 1.2rem; }
}
@media (max-width: 560px) {
  .v2-ig-grid { grid-template-columns: 1fr; }
  .v2-ig-post { border-right: 0 !important; border-bottom: 1px solid var(--v2-line); }
  .v2-ig-post:last-child { border-bottom: 0; }
}
