:root {
  --bg: #faf3f5;
  --white: #ffffff;
  --text: #23252b;
  --muted: #6d7482;
  --pink: #f3cfd9;
  --pink-soft: #fff4f7;
  --border: #eadde2;
  --shadow: 0 18px 40px rgba(35, 37, 43, 0.08);
  --radius: 24px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 20px;
}

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

ul {
  list-style: none;
}

button {
  font: inherit;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(250, 243, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(35, 37, 43, 0.08);
}

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

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

.brand-logo {
  height: 74px;
  width: auto;
  flex-shrink: 0;
  margin-right: -2px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
}

.brand-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.site-nav ul {
  display: flex;
  gap: 1.4rem;
}

.site-nav a {
  position: relative;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #d79aac;
  transition: width 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active-link {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a.active-link::after {
  width: 100%;
}

/* HERO */

.hero {
  padding: 4rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow,
.section-tag,
.page-tag {
  color: #8a6f77;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 0.7rem;
}

.section-heading h2,
.section-content h2,
.contact-text h2,
.preview-text h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0.9rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.hero-lead,
.page-lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 54ch;
  margin-bottom: 1.8rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-card,
.section-image-card,
.page-card,
.preview-card,
.map-box {
  background: linear-gradient(180deg, #fff8fa 0%, #ffffff 100%);
  padding: 0.7rem;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 24%;
  border-radius: 20px;
}

.about-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 20px;
}

/* PAGE HERO */

.page-hero {
  padding: 3.8rem 0 2rem;
}

.page-card {
  text-align: center;
  padding: 2.2rem 1.5rem;
}

.page-card .page-lead {
  max-width: 760px;
  margin: 0 auto;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: #2f3440;
  color: var(--white);
  border: 1px solid #2f3440;
  box-shadow: none;
}

.btn-primary:hover {
  background: transparent;
  color: #2f3440;
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
}

.btn-outline:hover {
  background: var(--pink-soft);
}

/* SECTIONS */

.section {
  padding: 4.2rem 0;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.2rem;
}

.section-heading p,
.section-content p,
.contact-text p,
.preview-text p {
  color: var(--muted);
}

.section-content p + p {
  margin-top: 1rem;
}

.two-col {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2.5rem;
  align-items: center;
}

/* ABOUT EXTRA */

.feature-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.feature-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.1rem;
}

.feature-item strong {
  display: block;
  margin-bottom: 0.3rem;
}

/* SERVICES */

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

.service-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 40px rgba(35, 37, 43, 0.12);
  border-color: #e5c0cb;
}

.service-card p {
  color: var(--muted);
  font-size: 0.97rem;
}

/* HOME PREVIEW */

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.preview-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

/* GALLERY */

/* GALLERY FIXED */

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

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.45s ease, filter 0.45s ease, box-shadow 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
  filter: brightness(1.03) saturate(1.04);
  box-shadow: 0 18px 34px rgba(233, 170, 190, 0.25);
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 24, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 2000;
}

.lightbox.open {
  display: flex;
}

.lightbox-image-wrap {
  position: relative;
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.lightbox-close {
  top: 1.2rem;
  right: 1.2rem;
  position: fixed;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-caption {
  position: absolute;
  left: 50%;
  bottom: -2.2rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  text-align: center;
  width: 100%;
}

/* CONTACT */

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--pink-soft) 100%);
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-details {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.contact-details a {
  transition: color 0.25s ease;
}

.contact-details a:hover {
  color: #c78498;
}

.contact-form {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.95);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d9a8b7;
  box-shadow: 0 0 0 4px rgba(217, 168, 183, 0.14);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.map-box {
  margin-top: 2rem;
  overflow: hidden;
  padding: 0;
}

.map-box iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

/* FOOTER */

.site-footer {
  padding: 1.5rem 0 2rem;
}

.footer-wrapper {
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin: 0.9rem 0;
  flex-wrap: wrap;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--muted);
  transition: fill 0.25s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  background: var(--pink-soft);
  border-color: #d79aac;
}

.social-icon:hover svg {
  fill: #d79aac;
}

.footer-credit {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #9aa0aa;
}

/* REVEAL */

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

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

/* RESPONSIVE */

@media (max-width: 1024px) {
  .hero-grid,
  .two-col,
  .contact-box,
  .preview-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-image {
    height: 400px;
  }

  .about-image {
    height: 460px;
  }

  .preview-card img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .nav-wrapper {
    flex-direction: column;
    justify-content: center;
    padding: 0.8rem 0;
  }

  .brand {
    justify-content: center;
  }

  .brand-logo {
    height: 68px;
  }

  .brand-text {
    text-align: left;
  }

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

  .hero {
    padding-top: 3rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.25rem;
  }

  .section {
    padding: 3.2rem 0;
  }

  .page-hero {
    padding: 3rem 0 1.5rem;
  }

  .page-card {
    padding: 1.8rem 1.2rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-image {
    height: 340px;
  }

  .about-image {
    height: 380px;
  }

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

  .contact-box {
    padding: 1.4rem;
  }

  .map-box iframe {
    height: 280px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(94%, var(--container));
  }

  .nav-wrapper {
    gap: 1rem;
  }

  .brand-logo {
    height: 60px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-sub {
    font-size: 0.82rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2rem;
  }

  .hero-lead,
  .page-lead {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

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

  .contact-form input,
  .contact-form textarea {
    padding: 0.9rem;
  }

  .map-box iframe {
    height: 240px;
  }

  .gallery-item img {
    height: 260px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
}