:root {
  --bg: #fdf8f7;
  --bg-soft: #fffdfc;
  --panel: rgba(255, 255, 255, 0.74);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(132, 94, 113, 0.16);
  --text: #463845;
  --muted: #726372;
  --heading: #342632;
  --primary: #b87988;
  --primary-dark: #915f6e;
  --secondary: #f3dfdf;
  --gold: #d6b58a;
  --shadow: 0 28px 60px rgba(119, 82, 102, 0.12);
  --shadow-soft: 0 18px 40px rgba(137, 101, 120, 0.08);
  --radius: 28px;
  --radius-sm: 20px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(236, 213, 220, 0.52), transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(246, 228, 214, 0.56), transparent 28%),
    linear-gradient(180deg, #fff8f7 0%, #fcf6f4 44%, #f8f0ee 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

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

button,
a,
input,
textarea {
  font: inherit;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-label {
  margin: 0 0 14px;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

h1,
h2,
h3,
.brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--heading);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

h1 {
  margin: 0 0 22px;
  font-size: clamp(3.6rem, 9vw, 6.6rem);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.9rem;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}

.glow-one {
  left: -120px;
  top: 80px;
  background: rgba(241, 196, 207, 0.45);
}

.glow-two {
  right: -120px;
  top: 520px;
  background: rgba(237, 215, 188, 0.44);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 20px 0 0;
  transition: padding 0.25s ease;
}

.site-header.scrolled {
  padding-top: 10px;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(255, 252, 251, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 38px rgba(164, 125, 146, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3d7db, #efd9c8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 8px 20px rgba(177, 128, 145, 0.16);
}

.brand span {
  display: grid;
}

.brand strong {
  font-size: 1.7rem;
}

.brand small {
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.67rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--heading);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(188, 126, 142, 0.98), rgba(165, 100, 122, 0.98));
  color: white !important;
  box-shadow: 0 14px 24px rgba(184, 121, 136, 0.25);
}

.menu-toggle {
  display: none;
  border: none;
  background: rgba(241, 222, 223, 0.9);
  color: var(--heading);
  border-radius: 999px;
  padding: 10px 16px;
}

.hero {
  padding-top: 48px;
}

.hero-grid,
.story-grid,
.faq-grid,
.contact-panel,
.gallery-grid {
  display: grid;
  gap: 38px;
}

.hero-grid {
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(184, 121, 136, 0.16);
  box-shadow: var(--shadow-soft);
  color: var(--primary-dark);
}

.hero-lead {
  max-width: 600px;
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 32px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 16px 30px rgba(184, 121, 136, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 20px 36px rgba(184, 121, 136, 0.34);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(184, 121, 136, 0.18);
  color: var(--heading);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-highlights div,
.story-panel,
.mini-card,
.service-card,
.benefit-card,
.testimonial-card,
.faq-item,
.contact-panel,
.site-footer,
.mosaic-item,
.detail-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.hero-highlights div {
  padding: 18px;
  border-radius: 24px;
}

.hero-highlights strong,
.detail-row strong {
  display: block;
  margin-bottom: 6px;
  color: var(--heading);
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-photo {
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255,255,255,0.82);
}

.hero-photo img,
.mosaic-item img,
.detail-card img,
.visual-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-main-photo {
  position: relative;
  max-width: 520px;
  margin-left: auto;
  height: 620px;
  box-shadow: var(--shadow);
}

.hero-card-photo {
  position: absolute;
  left: 0;
  bottom: 34px;
  width: min(48%, 240px);
  height: 300px;
  box-shadow: 0 24px 48px rgba(132, 95, 113, 0.18);
}

.hero-note {
  position: absolute;
  right: 18px;
  bottom: 28px;
  max-width: 260px;
  padding: 18px 20px;
  border-radius: 24px;
  color: var(--heading);
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(251, 240, 239, 0.88));
  border: 1px solid rgba(214, 181, 138, 0.34);
  box-shadow: 0 18px 32px rgba(169, 128, 112, 0.16);
}

.hero-note span,
.mini-label,
.service-icon,
.detail-row span,
.stars {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.story-grid {
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
}

.story-panel,
.mini-card,
.service-card,
.benefit-card,
.testimonial-card,
.contact-panel,
.site-footer,
.faq-item {
  border-radius: var(--radius);
}

.story-panel {
  padding: 42px;
}

.story-aside {
  display: grid;
  gap: 22px;
}

.mini-card {
  padding: 28px;
}

.mini-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: var(--heading);
}

.detail-card {
  overflow: hidden;
  border-radius: 34px;
  min-height: 380px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.chips span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(250, 240, 241, 0.94);
  border: 1px solid rgba(184, 121, 136, 0.16);
  color: var(--primary-dark);
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.service-card {
  grid-column: span 4;
  min-height: 230px;
  padding: 28px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover,
.benefit-card:hover,
.testimonial-card:hover,
.mosaic-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 46px rgba(150, 110, 130, 0.14);
}

.service-card.wide {
  grid-column: span 6;
}

.service-card.tall {
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(247, 235, 235, 0.92));
}

.service-icon {
  color: var(--gold);
}

.benefits-grid,
.testimonials-grid,
.footer-grid {
  display: grid;
  gap: 20px;
}

.benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-card,
.testimonial-card {
  padding: 26px;
  min-height: 220px;
}

.visual-card {
  overflow: hidden;
  padding: 0;
}

.gallery-grid {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mosaic-item {
  overflow: hidden;
  min-height: 250px;
  border-radius: 30px;
}

.mosaic-item.large {
  grid-row: span 2;
  min-height: 520px;
}

.mosaic-item.wide {
  grid-column: span 2;
  min-height: 240px;
}

.mosaic-item:hover img,
.hero-photo:hover img,
.detail-card:hover img,
.visual-card:hover img {
  transform: scale(1.04);
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stars {
  color: var(--gold);
}

.faq-grid {
  grid-template-columns: 0.76fr 1.24fr;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 0 24px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  color: var(--heading);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--primary-dark);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 0 22px;
  margin: 0;
}

.contact-panel {
  grid-template-columns: 1fr 1fr;
  padding: 42px;
  background: linear-gradient(135deg, rgba(255,255,255,0.88), rgba(249, 237, 236, 0.96));
}

.contact-details {
  display: grid;
  gap: 14px;
}

.detail-row {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(184, 121, 136, 0.14);
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--heading);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(184, 121, 136, 0.16);
  border-radius: 18px;
  padding: 14px 16px;
  resize: vertical;
  background: rgba(255,255,255,0.92);
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(184, 121, 136, 0.18);
  border-color: rgba(184, 121, 136, 0.32);
}

.site-footer {
  margin: 0 auto 28px;
  width: var(--container);
  padding: 28px 32px;
  background: rgba(255, 252, 252, 0.76);
}

.footer-grid {
  grid-template-columns: 1.3fr 1fr auto;
  align-items: start;
}

.footer-grid a {
  color: var(--primary-dark);
}

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

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

.reveal.delay-1 {
  transition-delay: 0.12s;
}

.reveal.delay-2 {
  transition-delay: 0.2s;
}

.float-soft {
  animation: floatSoft 7s ease-in-out infinite;
}

.shimmer {
  overflow: hidden;
}

.shimmer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 45%, transparent 75%);
  transform: translateX(-130%);
  animation: shimmerMove 7s ease-in-out infinite;
}

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

@keyframes shimmerMove {
  0%, 20% { transform: translateX(-130%); }
  55%, 100% { transform: translateX(130%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .hero-grid,
  .story-grid,
  .gallery-grid,
  .faq-grid,
  .contact-panel,
  .benefits-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: initial;
    padding-bottom: 120px;
  }

  .hero-main-photo {
    margin-left: 0;
    max-width: none;
    height: 560px;
  }

  .hero-card-photo {
    left: 18px;
  }

  .services-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card,
  .service-card.wide,
  .service-card.tall {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 86px 0;
  }

  .nav-shell {
    border-radius: 28px;
    padding: 16px;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
    gap: 14px;
  }

  .nav-links.is-open {
    display: flex;
  }

  h1 {
    font-size: clamp(2.9rem, 14vw, 4.5rem);
  }

  .hero-main-photo {
    height: 460px;
  }

  .hero-card-photo {
    width: 44%;
    height: 220px;
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 18px;
    max-width: none;
  }

  .story-panel,
  .benefit-card,
  .testimonial-card,
  .contact-panel,
  .service-card,
  .mini-card,
  .faq-item,
  .site-footer {
    padding: 24px;
  }

  .services-bento,
  .mosaic {
    grid-template-columns: 1fr;
  }

  .mosaic-item.large,
  .mosaic-item.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 24px, 1000px);
  }

  .brand strong {
    font-size: 1.35rem;
  }

  .brand small {
    letter-spacing: 0.06em;
  }

  .btn,
  .nav-cta,
  .menu-toggle {
    width: 100%;
  }

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

  .hero-card-photo {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    height: 220px;
    margin-top: 18px;
  }

  .hero-visual {
    padding-bottom: 0;
  }

  .hero-main-photo {
    height: 380px;
  }
}

