:root {
  --cream: #f7f1ee;
  --blush: #e9c7d0;
  --rose: #d8a0b1;
  --sage: #3b5d4a;
  --dark: #1c1a1b;
  --gold: #b07a4c;
  --shadow: 0 24px 60px rgba(28, 26, 27, 0.15);
  --glass: rgba(255, 255, 255, 0.7);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--dark);
  background: radial-gradient(circle at top left, #fff, var(--cream));
  min-height: 100vh;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  background: rgba(247, 241, 238, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(176, 122, 76, 0.15);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-family: "Playfair Display", serif;
}

.brand-title {
  font-size: 20px;
  letter-spacing: 0.08em;
}

.brand-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sage);
}

.nav {
  display: flex;
  gap: 28px;
  font-weight: 500;
}

.nav a {
  color: inherit;
  text-decoration: none;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--sage);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.cta,
.ghost {
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta {
  background: var(--sage);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta:hover {
  transform: translateY(-2px);
}

.ghost {
  background: transparent;
  border: 1px solid var(--sage);
  color: var(--sage);
}

main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding-bottom: 100px;
  overflow-x: hidden;
}

section {
  scroll-margin-top: 110px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
  gap: 60px;
  align-items: center;
  padding: 120px 6vw 40px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% 0 -10%;
  background: radial-gradient(circle at 10% 20%, rgba(216, 160, 177, 0.35), transparent 55%),
    radial-gradient(circle at 85% 15%, rgba(176, 122, 76, 0.25), transparent 45%),
    radial-gradient(circle at 30% 80%, rgba(59, 93, 74, 0.18), transparent 55%);
  z-index: -1;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  margin: 20px 0;
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.hero-rose {
  width: min(360px, 70vw);
  height: min(460px, 90vw);
  background: var(--sage);
  opacity: 0.1;
  -webkit-mask: url("rose-svg.svg") no-repeat center / contain;
  mask: url("rose-svg.svg") no-repeat center / contain;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 12px;
  color: var(--gold);
}

.hero-copy {
  font-size: 18px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-highlight {
  margin-top: 16px;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 28px 0 40px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.meta-value {
  font-weight: 600;
  font-size: 20px;
  color: var(--sage);
}

.meta-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5c4b42;
}

.hero-card {
  justify-self: end;
  background: var(--glass);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 32px;
  border: 1px solid rgba(216, 160, 177, 0.3);
}

.hero-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 12px;
}

.hero-card p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.story {
  padding: 0 6vw;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 40px;
}

.story-copy h2,
.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 16px;
}

.story-copy p {
  line-height: 1.7;
  font-size: 17px;
  margin-bottom: 24px;
}

.story-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.story-list span {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(59, 93, 74, 0.1);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-panel {
  background: linear-gradient(135deg, rgba(216, 160, 177, 0.5), rgba(255, 255, 255, 0.8));
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(216, 160, 177, 0.3);
}

.story-panel h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 12px;
}

.story-panel p {
  margin-bottom: 10px;
}

.small {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.items {
  padding: 0 6vw;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
  margin-bottom: 40px;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.item-card {
  background: var(--glass);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.item-card:focus {
  outline: 2px solid rgba(59, 93, 74, 0.6);
  outline-offset: 4px;
}

.item-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(28, 26, 27, 0.2);
}

.item-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.item-body {
  padding: 20px;
}

.item-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 8px;
}

.price {
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 6px;
}

.item-desc {
  font-size: 14px;
  color: #5c4b42;
}

.contact {
  padding: 0 6vw;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.contact-card {
  background: var(--glass);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(216, 160, 177, 0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info a {
  color: var(--sage);
  text-decoration: none;
}

.map-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(216, 160, 177, 0.3);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 320px;
}

.site-footer {
  padding: 40px 6vw 60px;
  text-align: center;
  font-size: 14px;
  color: #5c4b42;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-dot {
  margin: 0 8px;
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28, 26, 27, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
  padding: 24px;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: transparent;
  margin: 0 auto;
}

.lightbox-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  font-size: 18px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    gap: 16px;
    padding: 20px calc(4vw + env(safe-area-inset-right)) 20px
      calc(4vw + env(safe-area-inset-left));
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }

  .hero-art {
    display: none;
  }

  .hero-card {
    justify-self: start;
  }

  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 18px 4vw;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-rose {
    max-height: 240px;
  }

  .cta,
  .ghost {
    width: 100%;
  }
}
