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

:root {
  --bg-main: #fff2f5;
  --bg-soft: #fff5f7;
  --bg-card: rgba(255, 250, 251, 0.88);
  --bg-section: linear-gradient(115deg, #ffeff3, #fde5eb);
  --text-main: #5c3530;
  --text-soft: #a15c6a;
  --text-muted: #b37b88;
  --accent: #e27b8f;
  --accent-light: #f4a4b8;
  --accent-soft: #ffd1dc;
  --gold: #d4af6a;
  --border-soft: rgba(244, 164, 184, 0.45);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.05);
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(145deg, #fff2f5 0%, #ffe8ee 100%);
  color: var(--text-main);
  font-family: "Inter", sans-serif;
  font-weight: 300;
  line-height: 1.5;
}

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

h1,
h2,
h3,
.logo,
.nav-link,
.hero-title,
.note-title,
.story-quote,
.product-name,
.experience-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.35rem 3rem;
  flex-wrap: wrap;
  background: rgba(255, 245, 247, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  color: var(--text-soft);
}

.logo span {
  color: var(--accent);
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-soft);
  transition: color 0.25s ease;
}

.nav-link:hover {
  color: var(--accent);
}

/* HERO */
.hero {
  position: relative;
  height: 92vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.02) contrast(1.02) saturate(1.03);
  z-index: 0;
}

.soft-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 242, 245, 0.2) 0%, rgba(255, 242, 245, 0.92) 76%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 760px;
  padding: 2rem;
}

.hero-badge {
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 0.95;
  margin: 0.65rem 0 0.75rem;
  background: linear-gradient(135deg, #c87080 0%, #e27b8f 45%, #f5a9b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  max-width: 540px;
  margin: 0 auto;
  font-size: 0.98rem;
  color: var(--text-soft);
}

.floating-bottle {
  position: relative;
  display: inline-block;
  margin-top: 2rem;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.09));
  animation: floatBottle 6s ease-in-out infinite;
}

@keyframes floatBottle {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.bottle-img {
  width: min(260px, 72vw);
  height: auto;
  border-radius: 32px;
  object-fit: cover;
}

.btn-pink,
.glow-button {
  appearance: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-pink {
  background: transparent;
  border: 1px solid var(--accent);
  color: #8e4e5a;
  padding: 0.9rem 2rem;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  margin-top: 1.25rem;
}

.btn-pink:hover {
  background: var(--accent);
  color: #fff5f7;
  box-shadow: 0 0 18px rgba(226, 123, 143, 0.35);
}

.glow-button {
  background: linear-gradient(95deg, #f4a4b8 0%, #e27b8f 100%);
  color: #fff5f7;
  padding: 1rem 2.2rem;
  font-weight: 500;
  letter-spacing: 2px;
  border-radius: 999px;
  margin-top: 2rem;
}

.glow-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(226, 123, 143, 0.3);
}

/* ADDRESS */
.shop-address {
  background: #fff0f4;
  border-radius: 40px;
  padding: 1.1rem 2rem;
  text-align: center;
  margin: 2rem 0 1rem;
  border: 1px solid var(--accent-light);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.025);
}

.shop-address span {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.shop-address p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* TITLES */
.section-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  text-align: center;
  margin: 4rem 0 2rem;
  color: var(--text-soft);
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 1rem auto 0;
}

/* NOTES */
.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0 4rem;
}

.note-card {
  background: rgba(255, 245, 247, 0.72);
  backdrop-filter: blur(8px);
  border-radius: 32px;
  padding: 1.25rem 1.25rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(244, 164, 184, 0.36);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.note-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-light);
  box-shadow: var(--shadow-soft);
}

.note-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 1rem;
}

.note-title {
  font-size: 1.8rem;
  color: #c87080;
  margin-bottom: 0.45rem;
}

.note-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.accent-pink {
  font-size: 0.74rem;
  color: var(--accent);
  margin-top: 0.8rem;
  letter-spacing: 0.4px;
}

/* STORY */
.big-story {
  margin: 5.5rem 0;
  background: linear-gradient(125deg, #fff0f4, #ffe5ec);
  border-radius: 48px;
  padding: 3rem;
  border: 1px solid rgba(244, 164, 184, 0.55);
  box-shadow: var(--shadow-soft);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-quote {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.08;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.story-text {
  font-size: 0.97rem;
  color: #9c6b76;
  line-height: 1.7;
  max-width: 560px;
}

.story-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* PRODUCTS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0 4rem;
}

.product-card {
  background: var(--bg-card);
  backdrop-filter: blur(4px);
  border-radius: 28px;
  padding: 1.3rem;
  border: 1px solid rgba(244, 164, 184, 0.35);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-light);
  box-shadow: var(--shadow-soft);
}

.product-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
}

.product-name {
  font-size: 1.6rem;
  margin: 1rem 0 0.35rem;
  color: var(--text-soft);
}

.product-price {
  font-size: 0.96rem;
  font-weight: 500;
  color: #c87080;
}

/* BRANCHES */
.branches {
  background: var(--bg-section);
  border-radius: 48px;
  padding: 3rem 2rem;
  margin: 4rem 0;
  text-align: center;
  border: 1px solid rgba(244, 164, 184, 0.45);
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 2rem;
}

.branch-card {
  background: rgba(255, 245, 247, 0.82);
  border-radius: 24px;
  padding: 1.2rem 1rem;
  border: 1px solid rgba(226, 123, 143, 0.24);
  color: var(--text-soft);
  font-weight: 500;
  letter-spacing: 1px;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* EXPERIENCE */
.experience {
  background: var(--bg-section);
  border-radius: 48px;
  padding: 3rem 2rem;
  margin: 4rem 0;
  text-align: center;
  border: 1px solid rgba(244, 164, 184, 0.55);
}

.experience-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.experience p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.experience-note {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--accent);
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 0;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.04);
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(244, 164, 184, 0.45);
  padding: 2rem;
  text-align: center;
  font-size: 0.76rem;
  letter-spacing: 1px;
  color: #c28b98;
  margin-top: 4rem;
}

footer p + p {
  margin-top: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .branches-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 950px) {
  .navbar {
    padding: 1rem 1.25rem;
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .container {
    padding: 0 1.2rem;
  }

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

  .hero {
    min-height: 620px;
    height: 88vh;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .big-story {
    padding: 2rem 1.2rem;
  }
}

@media (max-width: 640px) {
  .product-grid,
  .branches-grid {
    grid-template-columns: 1fr;
  }

  .note-img {
    height: 190px;
  }

  .product-img {
    height: 280px;
  }

  .hero-content {
    padding: 1.25rem;
  }

  .shop-address {
    padding: 1rem 1.2rem;
  }
}