/* ===== Variables & Reset ===== */
:root {
  --beige: #C9A86C;
  --beige-light: #E8D5B5;
  --beige-dark: #A88B4A;
  --cream: #F9F5EF;
  --white: #FFFFFF;
  --dark: #1A1A1A;
  --gray: #5A5A5A;
  --gray-light: #F0EBE3;
  --success: #2D6A4F;
  --shadow: 0 10px 40px rgba(0,0,0,0.08);
  --radius: 16px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

body.intro-active {
  overflow: hidden;
}

/* ===== Intro splash ===== */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  pointer-events: none;
}

.intro-half {
  position: relative;
  width: 50%;
  height: 100%;
  background: var(--cream);
  overflow: hidden;
  transition: transform 1.1s cubic-bezier(0.77, 0, 0.18, 1);
}

.intro-left {
  /* no border – seamless split */
}

.intro-logo-wrap {
  position: absolute;
  top: 50%;
  width: 200%;
  display: flex;
  justify-content: center;
  transform: translateY(-50%);
}

.intro-left .intro-logo-wrap {
  left: 0;
}

.intro-right .intro-logo-wrap {
  right: 0;
}

.intro-logo {
  width: min(320px, 55vw);
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.12));
  animation: introLogoIn 1s ease-out forwards;
}

@keyframes introLogoIn {
  0% {
    opacity: 0;
    transform: scale(1.15);
    filter: blur(8px) drop-shadow(0 12px 30px rgba(0,0,0,0.12));
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) drop-shadow(0 12px 30px rgba(0,0,0,0.12));
  }
}

/* Opening state */
.intro.open .intro-left {
  transform: translateX(-100%);
}

.intro.open .intro-right {
  transform: translateX(100%);
}

.intro.done {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--beige-dark);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  color: var(--gray);
  font-size: 1.1rem;
}

.section-header-wide {
  max-width: 900px;
}

.section-desc-wide {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .section-desc-wide {
    white-space: normal;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: var(--beige);
  color: var(--white);
  border-color: var(--beige);
}

.btn-primary:hover {
  background: var(--beige-dark);
  border-color: var(--beige-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 108, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--beige);
}

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

.btn-full {
  width: 100%;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(249, 245, 239, 0.95);
  backdrop-filter: blur(12px);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-bottom-color: rgba(201, 168, 108, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-img {
  height: 52px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
}

.nav-link:hover {
  color: var(--beige-dark);
}

.nav-cta {
  background: var(--beige);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
}

.nav-cta:hover {
  background: var(--beige-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: linear-gradient(135deg, #F9F5EF 0%, #EDE4D4 50%, #E8D5B5 100%);
  padding-top: 130px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,108,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 10px 0 40px;
}

.hero-logo {
  width: 220px;
  height: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.1));
  animation: polaroidReveal 1.4s ease-out forwards;
}

@keyframes polaroidReveal {
  0% {
    opacity: 0;
    transform: scale(1.12);
    filter: blur(10px) drop-shadow(0 8px 20px rgba(0,0,0,0.1));
  }
  60% {
    opacity: 1;
    filter: blur(2px) drop-shadow(0 8px 20px rgba(0,0,0,0.1));
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) drop-shadow(0 8px 20px rgba(0,0,0,0.1));
  }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 8px;
  color: var(--dark);
}

.hero-location {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto 36px;
  font-weight: 400;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-price {
  font-size: 1.05rem;
  color: var(--gray);
}

.hero-price strong {
  color: var(--beige-dark);
  font-size: 1.3rem;
}

/* ===== Services ===== */
.services {
  background: var(--white);
}

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

.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(201, 168, 108, 0.15);
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

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

.service-img {
  height: 200px;
  overflow: hidden;
  background: #f5f2eb;
  flex-shrink: 0;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.04);
}

.service-content {
  padding: 18px 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-content p {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 12px;
  line-height: 1.45;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

.service-features li {
  font-size: 0.9rem;
  color: var(--dark);
  padding-left: 20px;
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--beige-dark);
  font-weight: 700;
}

.service-price {
  background: var(--beige);
  color: #fff;
  text-align: center;
  padding: 13px 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

.service-price span {
  font-size: 0.78rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  opacity: 0.9;
  margin-right: 4px;
}

/* ===== Gallery ===== */
.gallery {
  background: var(--cream);
}

.partners-strip {
  margin: 48px auto 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--beige-light) transparent;
  cursor: grab;
  padding: 16px 0 8px;
}

.partners-strip:active {
  cursor: grabbing;
}

.partners-strip::-webkit-scrollbar {
  height: 6px;
}

.partners-strip::-webkit-scrollbar-track {
  background: transparent;
}

.partners-strip::-webkit-scrollbar-thumb {
  background: var(--beige-light);
  border-radius: 3px;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  padding: 0 24px;
}

.partner-logo {
  flex-shrink: 0;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.partner-logo img {
  height: 100%;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(20%);
}

.partner-logo:hover img {
  filter: grayscale(0%);
}

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

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1/1;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* ===== Pricing ===== */
.pricing {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.price-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: var(--transition);
}

.price-card:hover {
  border-color: var(--beige-light);
  box-shadow: var(--shadow);
}

.price-card.popular {
  background: linear-gradient(180deg, #F9F5EF 0%, #EDE4D4 100%);
  border-color: var(--beige);
  transform: scale(1.03);
  box-shadow: var(--shadow);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--beige);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.price-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--beige-dark);
  margin-bottom: 28px;
  font-family: 'Playfair Display', serif;
}

.price-amount span {
  font-size: 1.4rem;
  font-weight: 500;
}

.price-features {
  margin-bottom: 32px;
  text-align: left;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(201, 168, 108, 0.2);
  font-size: 0.95rem;
  color: var(--gray);
  padding-left: 24px;
  position: relative;
}

.price-features li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--beige);
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Contact ===== */
.contact {
  background: linear-gradient(180deg, var(--cream) 0%, #EDE4D4 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--gray);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--dark);
}

.contact-item svg {
  flex-shrink: 0;
  color: var(--beige-dark);
  margin-top: 2px;
}

.contact-item a:hover {
  color: var(--beige-dark);
}

/* Form */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #E0D8CC;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--cream);
  color: var(--dark);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--beige);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-hint {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.4;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 16px;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: #ccc;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--beige-light);
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-links a,
.footer-contact a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #bbb;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--beige);
}

.footer-instagram {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.footer-instagram svg {
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}

/* ===== Modal ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius);
  text-align: center;
  max-width: 420px;
  width: 90%;
  transform: scale(0.9);
  transition: var(--transition);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-icon {
  width: 64px;
  height: 64px;
  background: var(--success);
  color: white;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.modal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.modal-content p {
  color: var(--gray);
  margin-bottom: 28px;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .price-card.popular {
    transform: none;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--cream);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 28px 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer-brand {
    text-align: center;
    width: 100%;
  }

  .footer-logo {
    display: block;
    margin: 0 auto 16px;
  }
  
  .footer-brand p {
    margin: 0 auto;
    max-width: 100%;
  }

  .footer-instagram {
    justify-content: center;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .section {
    padding: 70px 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}
