:root {
  --bg: #fff8f6;
  --white: #ffffff;
  --text: #2d2420;
  --muted: #6f625d;
  --rose: #e11d48;
  --rose-dark: #be123c;
  --rose-light: #ffe4ec;
  --border: #f8cbd8;
  --dark: #2d2420;
  --shadow: 0 24px 60px rgba(190, 18, 60, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #fde2e9;
}

.nav-wrapper {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, #f9a8d4, #e11d48);
  box-shadow: 0 12px 30px rgba(225, 29, 72, 0.24);
  font-size: 24px;
}

.brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--rose);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 11px;
}

.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
}

.main-nav a:hover {
  color: var(--rose);
}

.menu-button {
  display: none;
  border: 0;
  background: var(--rose-light);
  color: var(--rose);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 24px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--rose);
  color: white;
  box-shadow: 0 16px 35px rgba(225, 29, 72, 0.23);
}

.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--border);
  color: var(--text);
}

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

.full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(244, 114, 182, 0.2), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(251, 207, 232, 0.7), transparent 30%),
    radial-gradient(circle at 70% 90%, rgba(253, 186, 116, 0.22), transparent 35%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 800;
  font-size: 13px;
}

.eyebrow.light {
  color: #fecdd3;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
  margin: 0;
}

h1 {
  font-size: clamp(50px, 7vw, 86px);
  max-width: 720px;
}

h2 {
  font-size: clamp(40px, 5vw, 60px);
}

h3 {
  font-size: 28px;
}

.hero-text {
  max-width: 610px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
  margin: 26px 0 0;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-card {
  min-height: 560px;
  border-radius: 44px;
  padding: 16px;
  background: linear-gradient(135deg, #ffe4ec, #ffffff, #fbcfe8);
  box-shadow: var(--shadow);
}

.decor-card {
  height: 100%;
  min-height: 530px;
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.45);
}

.decor-card::before,
.decor-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(244, 114, 182, 0.3);
}

.decor-card::before {
  width: 230px;
  height: 230px;
  top: -70px;
  right: -70px;
}

.decor-card::after {
  width: 160px;
  height: 160px;
  top: 160px;
  left: -52px;
  background: rgba(251, 207, 232, 0.82);
}

.mini-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 42px;
}

.mini-card {
  min-height: 150px;
  border-radius: 28px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid white;
  box-shadow: 0 14px 28px rgba(45, 36, 32, 0.08);
}

.mini-card.offset {
  transform: translateY(34px);
}

.mini-card span {
  display: block;
  color: var(--rose);
  font-size: 32px;
  margin-bottom: 20px;
}

.mini-card h3 {
  font-size: 24px;
}

.address-box {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 1;
  padding: 26px;
  color: white;
  border-radius: 28px;
  background: var(--dark);
  box-shadow: 0 20px 42px rgba(45, 36, 32, 0.25);
}

.address-box small {
  display: block;
  color: #fecdd3;
  margin-bottom: 5px;
}

.address-box strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  line-height: 1.08;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 44px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  padding: 32px;
  min-height: 280px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #fde2e9;
  box-shadow: 0 12px 30px rgba(45, 36, 32, 0.05);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: var(--rose-light);
  font-size: 26px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0;
}

.story-section {
  padding: 92px 0;
  background: white;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 54px;
  align-items: center;
}

.story-card {
  padding: 54px;
  color: white;
  border-radius: 42px;
  background: linear-gradient(135deg, #2d2420, #6b3c36);
  box-shadow: 0 30px 70px rgba(45, 36, 32, 0.2);
}

.story-card p:last-child {
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.75;
}

.benefits {
  display: grid;
  gap: 18px;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  border-radius: 26px;
  background: var(--bg);
  border: 1px solid #fde2e9;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.benefit span {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: var(--rose);
  color: white;
  font-weight: 800;
}

.gallery-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 44px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(135deg, #ffe4ec, #ffffff, #fbcfe8);
  border: 1px solid #fde2e9;
  box-shadow: 0 12px 30px rgba(45, 36, 32, 0.05);
}

.gallery-item::after {
  content: "✦";
  position: absolute;
  top: -22px;
  right: -8px;
  font-size: 124px;
  color: rgba(225, 29, 72, 0.12);
}

.gallery-item span {
  color: var(--muted);
  font-weight: 800;
}

.gallery-item h3 {
  position: relative;
  z-index: 1;
}

.contact-section {
  padding: 92px 0;
  color: white;
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
}

.contact-content > p:not(.eyebrow) {
  color: #d6d3d1;
  font-size: 19px;
  line-height: 1.75;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 34px;
}

.contact-card {
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.25s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
}

.contact-card.wide {
  grid-column: 1 / -1;
}

.contact-card span,
.contact-card small,
.contact-card strong {
  display: block;
}

.contact-card span {
  font-size: 28px;
  margin-bottom: 15px;
}

.contact-card small {
  color: #d6d3d1;
  margin-bottom: 5px;
}

.contact-card strong {
  font-size: 18px;
}

.form-panel {
  padding: 34px;
  border-radius: 34px;
  background: white;
  color: var(--text);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.form-panel p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #f4cbd6;
  border-radius: 18px;
  min-height: 48px;
  padding: 13px 15px;
  font: inherit;
  color: var(--text);
  background: #fff8f6;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.09);
}

.contact-form .btn:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  display: none;
  margin: 2px 0 0;
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.form-status.visible {
  display: block;
}

.form-status.pending {
  color: #6f625d;
  background: #fff8f6;
  border: 1px solid #f4cbd6;
}

.form-status.success {
  color: #166534;
  background: #dcfce7;
  border: 1px solid #86efac;
}

.form-status.error {
  color: #9f1239;
  background: #ffe4ec;
  border: 1px solid #fda4af;
}

.hours-section {
  padding: 70px 0;
  background: white;
}

.hours-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 44px;
  align-items: start;
}

.hours-table {
  border-radius: 30px;
  padding: 14px 26px;
  background: var(--bg);
  border: 1px solid #fde2e9;
}

.hours-table div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid #f7d3dd;
}

.hours-table div:last-child {
  border-bottom: 0;
}

.hours-table span {
  color: var(--muted);
}

.site-footer {
  background: #211916;
  color: #d6d3d1;
  padding: 28px 0;
}

.footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.whatsapp-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  padding: 14px 20px;
  border-radius: 999px;
  background: #22c55e;
  color: white;
  font-weight: 800;
  box-shadow: 0 16px 35px rgba(34, 197, 94, 0.32);
}

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

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

@media (max-width: 920px) {
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    padding: 18px;
    border-radius: 24px;
    background: white;
    box-shadow: var(--shadow);
    border: 1px solid #fde2e9;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.open {
    display: flex;
  }

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

  .hero {
    padding: 70px 0;
  }

  .hero-card {
    min-height: auto;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand strong {
    font-size: 21px;
  }

  .hero {
    padding: 56px 0;
  }

  h1 {
    font-size: 47px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions,
  .gallery-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .mini-grid,
  .services-grid,
  .gallery-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .mini-card.offset {
    transform: none;
  }

  .decor-card {
    min-height: auto;
    padding: 22px;
  }

  .address-box {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 20px;
  }

  .section,
  .story-section,
  .contact-section {
    padding: 68px 0;
  }

  .story-card,
  .form-panel {
    padding: 28px;
    border-radius: 30px;
  }

  .footer-wrapper {
    text-align: center;
    justify-content: center;
  }
}


.photo-card {
  position: relative;
  padding: 28px;
  background: #000;
}

.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.1));
  z-index: 1;
}

.photo-card span,
.photo-card h3 {
  position: relative;
  z-index: 2;
  color: white;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}
