:root {
  --bg: #a79f9a;
  --card: rgba(255,255,255,0.16);
  --card-strong: rgba(243,238,233,0.68);
  --text: #201a18;
  --muted: #544944;
  --line: rgba(255,255,255,0.26);
  --pink: #f5a9cb;
  --pink-hover: #f7b8d3;
  --shadow: 0 24px 40px rgba(47, 33, 28, 0.13);
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.background-decor {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.ring {
  position: absolute;
  border-radius: 999px;
  border: 28px solid var(--pink);
  opacity: 0.9;
}
.ring-1 { width: 220px; height: 220px; top: -42px; right: -56px; }
.ring-2 { width: 100px; height: 100px; top: 32%; left: 39%; border-width: 16px; }
.ring-3 { width: 130px; height: 130px; top: 16%; right: 8%; border-width: 22px; }
.ring-4 { width: 200px; height: 200px; bottom: 8%; left: 10%; border-width: 32px; }
.ring-5 { width: 250px; height: 250px; bottom: -54px; right: 12%; border-width: 36px; }

.page {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}
.layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  align-items: start;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border-radius: var(--radius);
}
.sidebar {
  position: sticky;
  top: 24px;
  padding: 28px;
}
.logo {
  width: 128px;
  height: auto;
  }
  .sidebar-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.sidebar-top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}

.sidebar-top-right .menu-button {
  width: 100%;
  justify-content: center;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 0;
}
.social-btn {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pink);
  box-shadow: 0 10px 18px rgba(47, 33, 28, 0.12);
  transition: transform .2s ease, background .2s ease;
}
.social-btn:hover { background: var(--pink-hover); transform: translateY(-1px); }
.social-btn svg { width: 24px; height: 24px; }
.sidebar-actions { margin-top: 18px; display: grid; gap: 16px; }
.menu-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 14px 24px;
  background: var(--pink);
  border-radius: 999px;
  font-weight: 600;
  transition: background .2s ease, transform .2s ease;
}
.menu-button:hover { background: var(--pink-hover); transform: translateY(-1px); }
.menu-button svg { width: 18px; height: 18px; }
.phone-link,
.address-link {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.6;
}
.phone-link svg,
.address-link svg { width: 18px; height: 18px; margin-top: 3px; flex: 0 0 auto; }
.sidebar-footer {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(32,26,24,.12);
  color: #2b2320;
}
.sidebar-footer p { margin: 18px 0 0; }
.content { display: grid; gap: 28px; }
.hero {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 360px;
}
.hero-text {
  padding: 38px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: 0.34em;
  color: #4b403b;
}
.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(56px, 5vw, 76px);
  line-height: 0.92;
  color: #f3a4c8;
  text-shadow:
    0 1px 0 rgba(77, 64, 59, 0.45),
    0 2px 10px rgba(77, 64, 59, 0.18);
}
.intro-text {
  margin: 24px 0 0;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.8;
  white-space: pre-line;
}
.more-button {
  margin-top: 14px;
  align-self: flex-start;
  background: transparent;
  border: 0;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.hero-image-wrap {
  position: relative;
  min-height: 100%;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.highlight {
  padding: 18px 20px;
  line-height: 1.7;
}
.section-card { padding: 28px 32px; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.section-card h2 {
  margin: 0;
  font-size: 34px;
}
.section-intro {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
}
.press-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.press-card {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  background: var(--card-strong);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 10px 24px rgba(47, 33, 28, 0.08);
  transition: transform .2s ease;
}
.press-card:hover { transform: translateY(-2px); }
.press-source {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7a6662;
}
.press-card h3 {
  margin: 10px 0 0;
  font-size: 20px;
  line-height: 1.45;
}
.link-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pink);
  flex: 0 0 auto;
}
.gallery-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 22px;
  transition: transform .35s ease;
}
.gallery-grid img:hover { transform: scale(1.02); }
.menu-button-small { padding: 12px 18px; }

@media (max-width: 1024px) {
  .layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .hero { grid-template-columns: 1fr; }
  .hero-text { padding-bottom: 24px; }
  .hero-image-wrap { height: 340px; }
  .highlights { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .press-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .page { padding: 16px 12px 32px; }
  .sidebar { padding: 22px; }
  .logo { width: 112px; }
  .hero-text { padding: 28px 22px 20px; }
  .eyebrow { margin-bottom: 14px; }
  .hero h1 { font-size: 56px; }
  .intro-text { font-size: 17px; line-height: 1.75; }
  .hero-image-wrap { height: 260px; }
  .highlights { grid-template-columns: 1fr; }
  .section-card { padding: 22px; }
  .section-card h2 { font-size: 30px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-grid img { height: 160px; }
  .ring-1 { width: 170px; height: 170px; }
  .ring-4 { width: 140px; height: 140px; }
  .ring-5 { width: 180px; height: 180px; }
    .sidebar-top {
    align-items: center;
  }

  .sidebar-top-right {
    gap: 12px;
  }

  .sidebar-top-right .menu-button {
    padding: 12px 18px;
  }

  .social-btn {
    width: 52px;
    height: 52px;
  }

  .hero h1 {
    font-size: 60px;
    text-shadow:
      0 1px 0 rgba(77, 64, 59, 0.55),
      0 2px 14px rgba(77, 64, 59, 0.22);
  }

  .ring-2,
  .ring-3 {
    opacity: 0.35;
  }
  .privacy-link-wrap {
  margin: 14px 0 0;
}

.privacy-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}
}
