/* ===== VARIABLES & RESET ===== */
:root {
  --cream: #F5EFE4;
  --gold: #C4A35A;
  --gold-light: #E8D5A3;
  --dark: #1A1612;
  --dark-mid: #3D3028;
  --white: #FDFAF5;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

/* ===== GRAIN TEXTURE ===== */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
}

h1 {
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.04em;
}

h3 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
}

.section-label {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== SECTION HEADING WITH BRACKETS ===== */
.section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-heading h2 {
  position: relative;
  display: inline-block;
  padding: 0 2rem;
}

.section-heading h2::before,
.section-heading h2::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 18px; height: 18px;
  border-color: var(--gold);
  border-style: solid;
}

.section-heading h2::before {
  left: 0;
  top: 0;
  border-width: 1px 0 0 1px;
}

.section-heading h2::after {
  right: 0;
  bottom: 0;
  border-width: 0 1px 1px 0;
  top: auto;
}

/* ===== DIVIDER / RING ORNAMENT ===== */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto 0;
}

.divider::before,
.divider::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.divider .ring {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.8;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(26, 22, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.nav-phone {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  opacity: 0.8;
  transition: opacity 0.2s ease;
  margin-left: auto;
  margin-right: 2rem;
}

.nav-phone:hover { opacity: 1; }

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

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold-light);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-light);
  transition: all 0.3s ease;
}

.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(26, 22, 18, 0.97);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 2rem;
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(196, 163, 90, 0.3);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(196, 163, 90, 0.15);
  transition: color 0.2s ease;
}

.mobile-menu a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--dark);
  background-image: url('../images/hero.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 18, 0.25);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero h1 {
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.hero-subtitle {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(232, 213, 163, 0.8);
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(253, 250, 245, 0.85);
  margin-bottom: 3rem;
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll span {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(232, 213, 163, 0.5);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(196,163,90,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ===== SECTIONS ===== */
section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}

.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-dark { background: var(--dark); }

/* ===== SERVICES ===== */
#services {
  background: var(--white);
  padding-left: 0;
  padding-right: 0;
}

#services .section-heading {
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--dark);
}

/* Фото карточки */
.service-card picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.service-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}

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

/* Плейсхолдер когда нет фото */
.service-card-placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(196,163,90,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(196,163,90,0.05) 0%, transparent 50%),
    linear-gradient(145deg, #2a2018 0%, #1a1612 60%, #221a14 100%);
}

/* Градиент снизу для читаемости текста */
.service-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 8, 5, 0.92) 0%,
    rgba(10, 8, 5, 0.55) 40%,
    rgba(10, 8, 5, 0.1) 70%,
    transparent 100%
  );
  transition: background 0.4s ease;
}

.service-card:hover .service-card-gradient {
  background: linear-gradient(
    to top,
    rgba(10, 8, 5, 0.95) 0%,
    rgba(10, 8, 5, 0.7) 50%,
    rgba(10, 8, 5, 0.2) 80%,
    transparent 100%
  );
}

/* Контент поверх изображения */
.service-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.75rem 1.5rem;
  z-index: 2;
}

.service-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 1.82vw, 1.56rem);
  color: var(--gold-light);
  margin-bottom: 0;
  line-height: 1.25;
  transition: margin-bottom 0.35s ease;
}

.service-card p {
  font-size: 0.78rem;
  color: rgba(232, 213, 163, 0.7);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin-top 0.35s ease;
  margin-top: 0;
}

.service-card:hover h3 {
  margin-bottom: 0.5rem;
}

.service-card:hover p {
  max-height: 80px;
  opacity: 1;
  margin-top: 0.1rem;
}

/* Тонкая золотая линия снизу при ховере */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
  z-index: 3;
}

.service-card:hover::after { width: 100%; }

/* ===== ABOUT ===== */
#about {
  background: var(--cream);
}

.about-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  grid-column: 1;
  grid-row: 1;
}

.about-text .section-heading {
  text-align: left;
  margin-bottom: 2rem;
}

.about-text .section-heading h2::before,
.about-text .section-heading h2::after { display: none; }

.about-text .section-heading h2 {
  padding: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.about-text p {
  color: var(--dark-mid);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.about-achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 163, 90, 0.3);
  grid-column: 1;
  grid-row: 2;
  align-self: end;
}

.about-achievements span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

.about-image {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -12px; right: -12px;
  bottom: 12px; left: 12px;
  border: 1px solid rgba(196, 163, 90, 0.4);
  z-index: 0;
}

.about-image picture {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
}

.about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  filter: sepia(5%) saturate(90%);
}

.about-image-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--dark-mid) 0%, var(--dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.about-image-placeholder svg {
  color: var(--gold);
  opacity: 0.4;
}

.about-image-placeholder span {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196, 163, 90, 0.5);
}

/* ===== GALLERY ===== */
#gallery {
  background: var(--dark);
}

#gallery .section-heading h2 {
  color: var(--gold-light);
}

#gallery .section-heading .divider::before,
#gallery .section-heading .divider::after {
  background: var(--gold);
}

#gallery .section-label {
  color: var(--gold);
}

.gallery-grid {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: absolute;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(196, 163, 90, 0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

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

.gallery-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: rgba(232, 213, 163, 0.4);
}

.gallery-empty p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.gallery-empty small {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== PARTNERS ===== */
#partners {
  background: var(--white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.partner-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(196, 163, 90, 0.2);
  background: var(--cream);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  border-color: rgba(196, 163, 90, 0.5);
  box-shadow: 0 4px 24px rgba(196, 163, 90, 0.1);
}

.partner-icon {
  width: 32px; height: 32px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.partner-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.03em;
  margin-bottom: 0.6rem;
  color: var(--dark);
}

.partner-card p {
  font-size: 0.82rem;
  color: var(--dark-mid);
  line-height: 1.65;
}

/* ===== CONTACTS ===== */
#contacts {
  background: var(--cream);
}

.contacts-inner {
  max-width: 700px;
  margin: 0 auto;
}

.contacts-subtitle {
  text-align: center;
  color: var(--dark-mid);
  font-size: 0.9rem;
  margin-bottom: 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.form-field input,
.form-field textarea {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  border: 1px solid rgba(196, 163, 90, 0.3);
  padding: 0.9rem 1.1rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  resize: none;
  line-height: 1.6;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.08);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(61, 48, 40, 0.35);
  font-style: italic;
}

.form-submit {
  margin-top: 0.5rem;
  text-align: center;
}

.form-submit .btn {
  min-width: 220px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem;
  border: 1px solid rgba(196, 163, 90, 0.3);
  background: var(--white);
}

.form-success p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--dark-mid);
}

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

.contact-info {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(196, 163, 90, 0.25);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: none;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--dark-mid);
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(196, 163, 90, 0.35);
  border-radius: 2px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item:hover {
  color: var(--dark);
  border-color: var(--gold);
  background: rgba(196, 163, 90, 0.06);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid var(--gold);
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}

footer p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: rgba(196, 163, 90, 0.6);
  margin-bottom: 0.35rem;
}

footer p:last-child { margin-bottom: 0; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 18, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal-box {
  position: relative;
  z-index: 1;
  background: var(--cream);
  width: 100%;
  max-width: 560px;
  padding: clamp(2rem, 5vw, 3.5rem);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s ease;
  border-top: 2px solid var(--gold);
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

/* Угловые декоры */
.modal-box::before,
.modal-box::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.5;
}
.modal-box::before { bottom: 12px; right: 12px; border-width: 0 1px 1px 0; }
.modal-box::after  { bottom: 12px; left:  12px; border-width: 0 0 1px 1px; }

.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 32px; height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-mid);
  opacity: 0.5;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.modal-close:hover { opacity: 1; color: var(--gold); }
.modal-close svg { width: 16px; height: 16px; }

.modal-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.modal-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.4rem;
  line-height: 1.15;
}

.modal-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--dark-mid);
  margin-bottom: 2rem;
  opacity: 0.75;
}

.modal-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.modal-divider::before, .modal-divider::after {
  content: ''; flex: 1;
  height: 1px;
  background: rgba(196,163,90,0.35);
}
.modal-divider span {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

.modal-form { display: flex; flex-direction: column; gap: 1.1rem; }

.modal-success {
  display: none;
  text-align: center;
  padding: 2rem 0 1rem;
}
.modal-success.visible { display: block; }
.modal-success-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
}
.modal-success p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--dark-mid);
  line-height: 1.6;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { gap: 3rem; }
  .service-card { aspect-ratio: 4/3; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .hero {
    background-attachment: scroll;
    background-image: url('../images/hero-mobile.webp');
  }

  .about-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .about-image {
    max-height: 65vw;
    overflow: hidden;
  }

  .about-image picture,
  .about-image img {
    aspect-ratio: unset;
    height: 65vw;
    max-height: 65vw;
  }

  .about-achievements { margin-top: 0; }
  .about-image::before { display: none; }

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

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .partners-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 16/9; }

  .hero-scroll { display: none; }
}
