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

:root {
  --pink: #e8a2a8;
  --pink-dark: #d98b91;
  --text: #4a4a4a;
  --muted: #777;
  --white: #ffffff;
  --soft-bg: #f8f5f3;
  --shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
}

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

/* NAVBAR */
.navbar {
  position: fixed;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1180px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 26px;
  padding: 16px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
  z-index: 1000;
  gap: 16px;
}

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

.logo img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
}

.logo span {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  white-space: nowrap;
}

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

.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-links a.active {
  color: #c89b5b;
  font-weight: 500;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
}

.language-switch img {
  width: 22px;
  height: 16px;
  cursor: pointer;
  border-radius: 2px;
  transition: 0.2s;
}

.language-switch img:hover {
  transform: scale(1.1);
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 130px 24px 60px;
  background:
    linear-gradient(rgba(255,255,255,0.46), rgba(255,255,255,0.46)),
    url("background.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-panel {
  width: min(100%, 1220px);
  min-height: 760px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(255,255,255,0.18), rgba(255,255,255,0.18)),
    url("background.jpg") center center / cover no-repeat;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255,255,255,0.35);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.18);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  text-align: center;
  padding: 60px 30px 100px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 8vw, 86px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.10);
  margin-bottom: 10px;
  font-style: italic;
}

.hero p {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  color: rgba(255,255,255,0.96);
  letter-spacing: 0.2px;
  margin-bottom: 34px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hero-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  border-radius: 14px;
  padding: 15px 34px;
  font-size: 17px;
  font-weight: 400;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--pink);
  color: white;
  box-shadow: 0 10px 24px rgba(232, 162, 168, 0.35);
}

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

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #d5c8c3;
  border-radius: 14px;
  padding: 15px 24px;
  font-size: 17px;
  font-weight: 400;
  color: #555;
  background: rgba(255,255,255,0.85);
  transition: all 0.25s ease;
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: #c89b5b;
  color: #c89b5b;
}

.price-pill {
  position: absolute;
  right: 32px;
  bottom: 28px;
  background: rgba(255,255,255,0.92);
  color: #666;
  text-decoration: none;
  padding: 18px 26px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  font-size: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.11);
}

/* COMMON SECTION */
.section-tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--pink-dark);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading h2,
.about-text h2,
.contact h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.05;
  font-weight: 500;
  color: #2f2f2f;
}

.page-header {
  padding: 180px 20px 40px;
  text-align: center;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: #2f2f2f;
}

/* HOME SERVICES */
.services {
  padding: 100px 24px;
}

.service-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.88);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #303030;
}

.service-card p {
  font-size: 15px;
  color: #6f6f6f;
}

/* ABOUT */
.about {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 20px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.about-image img {
  width: 100%;
  display: block;
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 50px rgba(0,0,0,0.10);
}

.about-text p {
  margin-bottom: 16px;
  color: #666;
  font-size: 16px;
}

/* CONTACT SECTION ON HOME */
.contact {
  text-align: center;
  padding: 100px 24px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.75), rgba(255,255,255,0.95));
}

.contact p {
  color: #666;
  margin-bottom: 8px;
  font-size: 16px;
}

.contact .btn {
  margin-top: 24px;
}

/* PRICE PAGE */
.price-page {
  background:
    linear-gradient(rgba(255,255,255,0.65), rgba(255,255,255,0.65)),
    url("price-bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-bottom: 120px;
}

.price-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 50px 70px;
  background: rgba(255,255,255,0.9);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  backdrop-filter: blur(6px);
}

.price-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  margin-bottom: 25px;
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: 10px;
}

.price-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c89b5b;
  margin-top: 10px;
}

.price-item {
  display: grid;
  grid-template-columns: 1fr 120px 100px;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
}

.price-item span:nth-child(2) {
  text-align: center;
}

.price-item span:nth-child(3) {
  text-align: right;
  font-weight: 600;
  color: #c89b5b;
}

/* CONTACT PAGE */
.contact-page {
  background:
    linear-gradient(rgba(255,255,255,0.72), rgba(255,255,255,0.72)),
    url("price-bg.png") center center / cover fixed no-repeat;
  min-height: 100vh;
}

.contact-layout {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 20px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.contact-card,
.map-card {
  background: rgba(255,255,255,0.88);
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  backdrop-filter: blur(6px);
}

.contact-card {
  padding: 42px;
}

.contact-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  line-height: 1.05;
  margin-bottom: 24px;
  color: #2f2f2f;
}

.contact-info {
  display: grid;
  gap: 22px;
}

.contact-row h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  margin-bottom: 6px;
  color: #303030;
}

.contact-row p {
  font-size: 16px;
  color: #666;
}

.contact-row a {
  color: #666;
  text-decoration: none;
}

.contact-row a:hover {
  color: var(--pink-dark);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  align-items: center;
}

.contact-actions .btn,
.contact-actions .btn-outline {
  height: auto;
  padding: 14px 26px;
  font-size: 16px;
}

.map-card {
  overflow: hidden;
  min-height: 700px;
}

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

/* GALLERY PAGE */
.gallery-page {
  background:
    linear-gradient(rgba(255,255,255,0.72), rgba(255,255,255,0.72)),
    url("price-bg.png") center center / cover fixed no-repeat;
  min-height: 100vh;
}

.gallery-intro {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 10px 24px 50px;
  text-align: center;
}

.gallery-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 500;
  color: #2f2f2f;
  margin-bottom: 16px;
}

.gallery-intro p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  color: #666;
}

.gallery-grid {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 24px 90px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
  backdrop-filter: blur(6px);
  min-height: 320px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 24px 22px;
  background: linear-gradient(to top, rgba(25,25,25,0.55), rgba(25,25,25,0.08), transparent);
  color: #fff;
}

.gallery-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 6px;
}

.gallery-overlay p {
  font-size: 15px;
  color: rgba(255,255,255,0.92);
}

.gallery-large {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 680px;
}

.gallery-wide {
  grid-column: span 8;
  min-height: 360px;
}

.gallery-grid > .gallery-card:not(.gallery-large):not(.gallery-wide) {
  grid-column: span 5;
}

.gallery-quote {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 0 24px 100px;
}

.gallery-quote-box {
  background: rgba(255,255,255,0.80);
  border-radius: 24px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  backdrop-filter: blur(6px);
}

.gallery-quote-box img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 20px;
}

.gallery-quote-box p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  line-height: 1.12;
  color: #2f2f2f;
}

/* FLOATING CONTACT */
.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: white;
  box-shadow: 0 10px 26px rgba(0,0,0,0.15);
  transition: 0.25s;
}

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

.call {
  background: #e8a2a8;
}

.whatsapp {
  background: #25D366;
}

.route {
  background: #6c7ae0;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 34px 20px;
  background: #f1ece9;
  color: #666;
  font-size: 14px;
}

.footer p + p {
  margin-top: 6px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav-links {
    gap: 22px;
  }

  .logo span {
    font-size: 14px;
  }

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

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

@media (max-width: 980px) {
  .gallery-large,
  .gallery-wide,
  .gallery-grid > .gallery-card:not(.gallery-large):not(.gallery-wide) {
    grid-column: span 12;
  }

  .gallery-large {
    min-height: 500px;
  }

  .gallery-wide {
    min-height: 300px;
  }
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 420px;
  }

  .map-card iframe {
    height: 420px;
  }
}

@media (max-width: 820px) {
  .navbar {
    top: 14px;
    width: calc(100% - 20px);
    padding: 12px 14px;
    border-radius: 20px;
    gap: 10px;
  }

  .nav-links {
    display: none;
  }

  .logo {
    gap: 8px;
    min-width: 0;
    flex: 1;
  }

  .logo img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .logo span {
    font-size: 13px;
    line-height: 1.2;
    white-space: normal;
  }

  .language-switch {
    margin-left: 0;
    gap: 6px;
    flex-shrink: 0;
  }

  .language-switch img {
    width: 20px;
    height: 14px;
  }

  .hero-panel {
    min-height: 640px;
  }

  .hero-inner {
    padding: 40px 20px 90px;
  }

  .price-pill {
    right: 18px;
    bottom: 18px;
    padding: 15px 20px;
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 110px;
  }

  .hero-panel {
    min-height: 560px;
    border-radius: 24px;
  }

  .hero h1 {
    line-height: 0.98;
  }

  .hero p {
    margin-bottom: 28px;
  }

  .hero-actions {
    margin-bottom: 22px;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 240px;
  }

  .price-pill {
    position: static;
    display: inline-block;
  }

  .page-header {
    padding: 120px 16px 28px;
  }

  .page-header h1 {
    font-size: 38px;
  }

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

  .price-section {
    margin: 26px 12px;
    padding: 26px 18px;
    border-radius: 18px;
  }

  .price-section h2 {
    font-size: 30px;
  }

  .price-item {
    grid-template-columns: 1fr 78px 72px;
    font-size: 15px;
    gap: 6px;
    padding: 14px 0;
  }

  .gallery-intro {
    padding: 0 16px 36px;
  }

  .gallery-grid {
    gap: 18px;
    padding: 0 12px 60px;
  }

  .gallery-card {
    min-height: 260px;
    border-radius: 22px;
  }

  .gallery-large {
    min-height: 360px;
  }

  .gallery-overlay h3 {
    font-size: 28px;
  }

  .gallery-quote-box p {
    font-size: 30px;
  }

  .contact-layout {
    padding: 10px 12px 80px;
    gap: 18px;
  }

  .contact-card {
    padding: 26px 20px;
  }

  .contact-card h2 {
    font-size: 36px;
  }

  .contact-row h3 {
    font-size: 24px;
  }

  .map-card {
    min-height: 360px;
  }

  .map-card iframe {
    height: 360px;
  }

  .floating-contact {
    flex-direction: row;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: space-around;
    background: white;
    padding: 10px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  }

  .float-btn {
    flex: 1;
    margin: 0 6px;
    border-radius: 10px;
    font-size: 13px;
    padding: 12px 0;
  }

  .footer {
    padding: 24px 16px 90px;
    font-size: 13px;
  }
}