/* =========================================================
   MEDINA FOOD — банкеты · никах · бизнес-мероприятия
   Дизайн-система
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,400;1,500&display=swap');

:root{
  /* палитра — взята из реального интерьера зала (тёплое дерево, зелёная стена,
     латунные буквы вывески MEDINA, бордовая штора) */
  --bg:        #FAF6EC;
  --bg-card:   #F1E9D8;
  --ink:       #2A2823;
  --ink-soft:  #6B6455;
  --green:     #34452F;
  --green-deep:#212D1D;
  --gold:      #B07F35;
  --gold-soft: #E4C793;
  --wine:      #6E2A34;
  --line:      rgba(42,40,35,.14);
  --white:     #FFFDF8;

  --font-display: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --radius: 4px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:hidden; width:100%; }
body{
  margin:0;
  font-family:var(--font-body);
  background:var(--bg);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  width:100%;
}
body.noscroll{ overflow:hidden; }

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4,p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; }

:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }

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

.eyebrow{
  font-size:14px;
  color:var(--gold);
  font-weight:600;
  letter-spacing:.02em;
}

h2.section-title{
  font-family:var(--font-display);
  font-weight:800;
  letter-spacing:-.02em;
  font-size:clamp(32px,4vw,52px);
  line-height:1.06;
  color:var(--green-deep);
  max-width:640px;
}

.section-lead{
  font-size:17px;
  line-height:1.6;
  color:var(--ink-soft);
  max-width:520px;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 30px;
  border-radius:2px;
  font-weight:600;
  font-size:15px;
  border:1px solid transparent;
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--green-deep);
  color:var(--white);
}
.btn-primary:hover{ background:var(--gold); color:var(--green-deep); }
.btn-ghost{
  background:transparent;
  border-color:currentColor;
  color:var(--green-deep);
}
.btn-ghost:hover{ background:var(--green-deep); color:var(--white); border-color:var(--green-deep); }
.btn-ghost-light{
  background:transparent;
  border-color:rgba(255,253,248,.55);
  color:var(--white);
}
.btn-ghost-light:hover{ background:var(--white); color:var(--green-deep); }
.btn svg{ width:16px; height:16px; flex:none; }

/* =========================================================
   HEADER
   ========================================================= */
.topbar{
  background:var(--green-deep);
  color:rgba(255,253,248,.82);
  font-size:13px;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-top:9px;
  padding-bottom:9px;
}
.topbar-loc{ display:flex; align-items:center; gap:8px; }
.topbar-loc svg{ width:14px; height:14px; flex:none; color:var(--gold-soft); }
.topbar-socials{ display:flex; gap:14px; }
.topbar-socials a{ opacity:.85; }
.topbar-socials a:hover{ opacity:1; color:var(--gold-soft); }
.topbar-socials svg{ width:16px; height:16px; }

header.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(250,246,236,.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:14px 0;
}
.logo-mark{ display:flex; align-items:center; gap:12px; flex:none; }
.logo-mark img{ height:36px; width:auto; }
.logo-mark .tagline{
  display:block;
  font-size:11px;
  letter-spacing:.05em;
  color:var(--ink-soft);
  border-left:1px solid var(--line);
  padding-left:12px;
  line-height:1.3;
  max-width:150px;
}

nav.main-nav{ display:flex; }
nav.main-nav > ul{ display:flex; gap:28px; }
nav.main-nav > ul > li{ position:relative; }
nav.main-nav > ul > li > a{
  font-size:14.5px;
  font-weight:500;
  color:var(--ink);
  position:relative;
  padding:6px 0;
  display:inline-flex;
  align-items:center;
  gap:5px;
}
nav.main-nav > ul > li > a::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0;
  height:1px; background:var(--gold);
  transform:scaleX(0); transform-origin:left;
  transition:transform .25s ease;
}
nav.main-nav > ul > li > a:hover::after{ transform:scaleX(1); }
nav.main-nav .caret{ width:9px; height:9px; flex:none; transition:transform .2s ease; }
nav.main-nav li.has-dropdown:hover .caret,
nav.main-nav li.has-dropdown:focus-within .caret{ transform:rotate(180deg); }

.nav-dropdown{
  position:absolute; top:100%; left:-14px; margin-top:14px;
  background:var(--white); border:1px solid var(--line); border-radius:2px;
  min-width:230px; padding:8px;
  box-shadow:0 16px 34px rgba(20,18,12,.14);
  opacity:0; visibility:hidden; transform:translateY(6px);
  transition:opacity .18s ease, transform .18s ease, visibility .18s;
  z-index:70;
}
li.has-dropdown:hover .nav-dropdown,
li.has-dropdown:focus-within .nav-dropdown{ opacity:1; visibility:visible; transform:translateY(0); }
.nav-dropdown a{
  display:block; padding:10px 12px; font-size:14px; font-weight:500;
  color:var(--ink); border-radius:2px;
}
.nav-dropdown a:hover{ background:var(--bg-card); color:var(--green-deep); }

.header-actions{ display:flex; align-items:center; gap:18px; flex:none; }
.phone-link{ font-family:var(--font-display); font-size:19px; font-weight:700; color:var(--green-deep); }
.phone-link:hover{ color:var(--gold); }

.burger{
  display:none;
  flex-direction:column;
  gap:5px;
  width:26px;
  background:none; border:none; padding:4px;
}
.burger span{ height:2px; background:var(--ink); border-radius:2px; transition:all .25s ease; }

/* mobile drawer */
.mobile-nav{
  position:fixed; inset:0; z-index:80;
  background:var(--green-deep);
  color:var(--white);
  display:flex; flex-direction:column;
  padding:24px;
  transform:translateX(100%);
  transition:transform .32s ease;
}
.mobile-nav.open{ transform:translateX(0); }
.mobile-nav-top{ display:flex; justify-content:flex-end; }
.mobile-nav-close{ background:none;border:none;color:var(--white); width:32px;height:32px; }
.mobile-nav ul{ display:flex; flex-direction:column; gap:6px; margin-top:24px; }
.mobile-nav a{ font-family:var(--font-display); font-weight:600; font-size:26px; padding:10px 0; display:block; border-bottom:1px solid rgba(255,255,255,.12); }
.mobile-nav-foot{ margin-top:auto; display:flex; flex-direction:column; gap:14px; }
.mobile-nav-foot .phone-link{ color:var(--gold-soft); font-size:24px; }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  min-height:86svh;
  display:flex;
  align-items:flex-end;
  color:var(--white);
  overflow:hidden;
}
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media img{ width:100%; height:100%; object-fit:cover; }
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(20,20,15,.86) 0%, rgba(20,20,15,.42) 45%, rgba(20,20,15,.22) 70%, rgba(20,20,15,.5) 100%);
}
.hero-inner{ position:relative; z-index:1; width:100%; padding-bottom:64px; padding-top:140px; }
.hero-kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-size:13.5px; letter-spacing:.04em; color:var(--gold-soft);
  margin-bottom:18px;
}
.hero-kicker::before{ content:""; width:26px; height:1px; background:var(--gold-soft); }
.hero h1{
  font-family:var(--font-display);
  font-weight:800;
  letter-spacing:-.02em;
  font-size:clamp(38px,6vw,74px);
  line-height:1.03;
  max-width:820px;
}
.hero h1 em{ font-style:italic; color:var(--gold-soft); }
.hero-sub{
  margin-top:20px;
  font-size:18px;
  line-height:1.6;
  max-width:480px;
  color:rgba(255,253,248,.86);
}
.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }

.hero-stats{
  position:relative; z-index:1;
  margin-top:56px;
  background:var(--white);
  color:var(--ink);
  border-radius:2px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  box-shadow:0 18px 40px rgba(20,18,12,.18);
}
.hero-stats div{
  padding:22px 20px;
  border-right:1px solid var(--line);
  text-align:left;
}
.hero-stats div:last-child{ border-right:none; }
.hero-stats strong{
  display:block;
  font-family:var(--font-display);
  font-size:30px;
  color:var(--green-deep);
  font-weight:600;
}
.hero-stats span{ font-size:12.5px; color:var(--ink-soft); line-height:1.3; }

/* =========================================================
   ABOUT / атмосфера
   ========================================================= */
.about{ padding:110px 0 100px; }
.about .container{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
}
.about-text .eyebrow{ margin-bottom:14px; display:block; }
.about-features{ margin-top:34px; display:grid; gap:22px; }
.about-feature{ display:flex; gap:16px; align-items:flex-start; }
.about-feature .icon{
  flex:none; width:44px; height:44px;
  border:1px solid var(--line);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--green);
}
.about-feature .icon svg{ width:20px; height:20px; }
.about-feature h4{ font-size:15.5px; font-weight:700; margin-bottom:4px; }
.about-feature p{ font-size:14.5px; color:var(--ink-soft); line-height:1.5; }

.about-media{ position:relative; }
.about-media img{ border-radius:2px; width:100%; height:560px; object-fit:cover; }
.about-media-tag{
  position:absolute; left:-28px; bottom:-28px;
  background:var(--green-deep);
  color:var(--white);
  padding:22px 26px;
  max-width:230px;
  font-family:var(--font-display);
  font-size:19px;
  line-height:1.35;
  box-shadow:0 14px 30px rgba(20,18,12,.22);
}
.about-media-tag b{ color:var(--gold-soft); }

/* =========================================================
   EVENTS — Мероприятия (карточки)
   ========================================================= */
.events{ padding:100px 0; background:var(--green-deep); color:var(--white); }
.events-head{
  display:flex; justify-content:space-between; align-items:flex-end; gap:24px;
  margin-bottom:52px; flex-wrap:wrap;
}
.events-head .section-title{ color:var(--white); }
.events-head p{ color:rgba(255,253,248,.7); max-width:420px; font-size:15.5px; line-height:1.6; }

.events-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:2px;
  background:rgba(255,253,248,.14);
}
.event-card{
  position:relative;
  min-height:460px;
  background:var(--green-deep);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:26px 22px;
  overflow:hidden;
}
.event-card img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transition:transform .5s ease, opacity .3s ease;
  opacity:.5;
}
.event-card:hover img{ transform:scale(1.06); opacity:.32; }
.event-card::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(15,15,11,.92) 10%, rgba(15,15,11,.15) 62%);
  z-index:1;
}
.event-card-num{
  position:relative; z-index:2;
  font-family:var(--font-display); font-weight:700; letter-spacing:.04em; font-size:13px; color:var(--gold-soft);
  margin-bottom:auto;
}
.event-card-body{ position:relative; z-index:2; }
.event-card h3{ font-family:var(--font-display); font-size:25px; font-weight:700; letter-spacing:-.01em; margin-bottom:8px; }
.event-card p{ font-size:13.8px; color:rgba(255,253,248,.72); line-height:1.5; margin-bottom:14px; }
.event-card .tag{
  display:inline-block; font-size:12px; letter-spacing:.02em;
  padding:5px 10px; border:1px solid rgba(255,253,248,.3); border-radius:20px;
  color:var(--gold-soft);
}

/* =========================================================
   GALLERY — Залы
   ========================================================= */
.gallery{ padding:110px 0 100px; }
.gallery-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:46px; flex-wrap:wrap; }
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:190px;
  grid-auto-flow:dense;
  gap:10px;
}
.gallery-grid button{ background:none;border:none;padding:0; }
.gallery-item{ position:relative; overflow:hidden; border-radius:2px; cursor:zoom-in; }
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.gallery-item:hover img{ transform:scale(1.08); }
.gallery-item.span-2x2{ grid-column:span 2; grid-row:span 2; }
.gallery-item.span-2x1{ grid-column:span 2; }
.gallery-item.span-1x2{ grid-row:span 2; }
.gallery-item .cap{
  position:absolute; left:0; right:0; bottom:0;
  padding:12px 14px 10px;
  font-size:12.5px; color:var(--white);
  background:linear-gradient(0deg, rgba(15,15,11,.75), transparent);
  opacity:0; transition:opacity .25s ease;
}
.gallery-item:hover .cap{ opacity:1; }

/* =========================================================
   NIKAH STORY — фото с последнего никаха
   ========================================================= */
.nikah-story{ padding:100px 0; background:var(--bg-card); }
.nikah-story-head{
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:end; margin-bottom:50px;
}
.nikah-story-head p{ font-size:16px; line-height:1.65; color:var(--ink-soft); }
.nikah-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}
.nikah-grid button{ background:none;border:none;padding:0; }
.nikah-grid .gallery-item{ aspect-ratio:1/1; border-radius:2px; }

/* =========================================================
   TESTIMONIALS / доверие
   ========================================================= */
.trust{ padding:100px 0; }
.trust-head{ margin-bottom:50px; }
.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.trust-card{
  border:1px solid var(--line);
  border-radius:2px;
  overflow:hidden;
  background:var(--white);
}
.trust-card img{ width:100%; height:230px; object-fit:cover; }
.trust-card-body{ padding:18px 18px 22px; }
.trust-card h4{ font-size:14.5px; font-weight:700; margin-bottom:6px; }
.trust-card p{ font-size:13.5px; color:var(--ink-soft); line-height:1.5; }

.review-quote{
  margin-top:50px;
  border-top:1px solid var(--line);
  padding-top:36px;
  display:grid; grid-template-columns:auto 1fr; gap:22px; align-items:flex-start;
}
.review-quote svg{ width:34px; height:34px; color:var(--gold); flex:none; }
.review-quote p{ font-family:var(--font-display); font-size:22px; font-style:italic; line-height:1.5; color:var(--green-deep); }
.review-quote cite{ display:block; font-style:normal; font-size:13px; color:var(--ink-soft); margin-top:12px; }

/* =========================================================
   CONTACT / booking form
   ========================================================= */
.contact{ padding:110px 0 0; background:var(--green-deep); color:var(--white); }
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
}
.contact-info .eyebrow{ color:var(--gold-soft); }
.contact-info .section-title{ color:var(--white); margin-bottom:20px; }
.contact-list{ margin-top:36px; display:grid; gap:22px; }
.contact-list li{ display:flex; gap:16px; }
.contact-list .icon{
  flex:none; width:42px; height:42px; border-radius:50%;
  border:1px solid rgba(255,253,248,.28);
  display:flex; align-items:center; justify-content:center;
}
.contact-list .icon svg{ width:18px; height:18px; color:var(--gold-soft); }
.contact-list h4{ font-size:14px; color:rgba(255,253,248,.6); font-weight:500; margin-bottom:3px; }
.contact-list p, .contact-list a{ font-size:16.5px; font-weight:600; }
.contact-socials{ display:flex; gap:12px; margin-top:36px; }
.contact-socials a{
  width:42px; height:42px; border-radius:50%;
  border:1px solid rgba(255,253,248,.28);
  display:flex; align-items:center; justify-content:center;
}
.contact-socials svg{ width:18px; height:18px; }
.contact-socials a:hover{ background:var(--gold-soft); border-color:var(--gold-soft); color:var(--green-deep); }

.booking-form{
  background:var(--bg);
  color:var(--ink);
  padding:38px 34px;
  border-radius:2px;
}
.booking-form h3{ font-family:var(--font-display); font-weight:700; font-size:25px; color:var(--green-deep); margin-bottom:6px; }
.booking-form > p{ font-size:14px; color:var(--ink-soft); margin-bottom:26px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field{ margin-bottom:16px; }
.field label{ display:block; font-size:12.5px; color:var(--ink-soft); margin-bottom:6px; }
.field input, .field select, .field textarea{
  width:100%;
  border:1px solid var(--line);
  background:var(--white);
  padding:13px 14px;
  font-size:14.5px;
  border-radius:2px;
  color:var(--ink);
}
.field textarea{ resize:vertical; min-height:74px; }
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--gold); }
.consent{ display:flex; gap:10px; align-items:flex-start; font-size:12.5px; color:var(--ink-soft); margin:18px 0 20px; }
.consent input{ margin-top:3px; flex:none; }
.consent a{ text-decoration:underline; }
.form-msg{ font-size:13.5px; margin-top:12px; min-height:18px; }
.form-msg.ok{ color:#3E6E4B; }
.form-msg.err{ color:#B23B3B; }
.booking-form button[type="submit"]{ width:100%; justify-content:center; }
.booking-form button[disabled]{ opacity:.6; cursor:progress; }

.map-block{ margin-top:70px; }
.map-block iframe{ width:100%; height:380px; border:0; display:block; filter:grayscale(.25) contrast(1.05); }

/* =========================================================
   FOOTER
   ========================================================= */
footer{ background:var(--green-deep); color:rgba(255,253,248,.7); padding:44px 0; margin-top:70px; }
.footer-row{ display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap; font-size:13px; }
.footer-row .logo-mark img{ filter:brightness(0) invert(1); opacity:.9; }
.footer-links{ display:flex; gap:22px; flex-wrap:wrap; }
.footer-links a:hover{ color:var(--gold-soft); }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox{
  position:fixed; inset:0; z-index:100;
  background:rgba(15,15,11,.94);
  display:flex; align-items:center; justify-content:center;
  padding:30px;
  opacity:0; pointer-events:none;
  transition:opacity .25s ease;
}
.lightbox.open{ opacity:1; pointer-events:auto; }
.lightbox img{ max-width:min(1100px,92vw); max-height:86vh; object-fit:contain; border-radius:2px; }
.lightbox-close, .lightbox-prev, .lightbox-next{
  position:absolute; background:rgba(255,253,248,.1); border:1px solid rgba(255,253,248,.3);
  color:var(--white); border-radius:50%; width:44px; height:44px;
  display:flex; align-items:center; justify-content:center;
}
.lightbox-close{ top:24px; right:24px; }
.lightbox-prev{ left:24px; top:50%; transform:translateY(-50%); }
.lightbox-next{ right:24px; top:50%; transform:translateY(-50%); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg{ width:18px; height:18px; }

/* sticky mobile call bar */
.mobile-call-bar{
  display:none;
  position:fixed; left:0; right:0; bottom:0; z-index:70;
  background:var(--green-deep);
  padding:12px 16px;
  gap:10px;
}
.mobile-call-bar a{ flex:1; justify-content:center; }

/* =========================================================
   INNER PAGES — SEO landing pages (никах / свадьба / бизнес / цены)
   ========================================================= */
.breadcrumbs{
  display:flex; flex-wrap:wrap; gap:6px; align-items:center;
  font-size:13px; color:var(--ink-soft);
  padding:18px 0;
}
.breadcrumbs a{ color:var(--ink-soft); }
.breadcrumbs a:hover{ color:var(--gold); }
.breadcrumbs span{ color:var(--ink-soft); }

.page-hero{
  position:relative; color:var(--white);
  min-height:52svh; display:flex; align-items:flex-end;
  overflow:hidden;
}
.page-hero-media{ position:absolute; inset:0; z-index:0; }
.page-hero-media img{ width:100%; height:100%; object-fit:cover; }
.page-hero-media::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(20,20,15,.88) 10%, rgba(20,20,15,.3) 65%, rgba(20,20,15,.5) 100%);
}
.page-hero-inner{ position:relative; z-index:1; padding-bottom:56px; padding-top:120px; }
.page-hero .eyebrow{ color:var(--gold-soft); display:block; margin-bottom:14px; }
.page-hero h1{
  font-family:var(--font-display); font-weight:800; letter-spacing:-.02em;
  font-size:clamp(30px,4.4vw,54px); line-height:1.08; max-width:760px;
}
.page-hero p{ margin-top:16px; font-size:16.5px; line-height:1.6; max-width:560px; color:rgba(255,253,248,.86); }
.page-hero .hero-cta{ margin-top:28px; }

.content-section{ padding:80px 0; }
.content-section.tight{ padding:56px 0; }
.content-section.alt{ background:var(--bg-card); }
.content-section.dark{ background:var(--green-deep); color:var(--white); }
.content-section.dark .section-title{ color:var(--white); }
.content-section h2.section-title{ margin-bottom:18px; }
.content-section .section-lead{ max-width:640px; }

.prose{ max-width:760px; font-size:16px; line-height:1.75; color:var(--ink); }
.prose p{ margin-bottom:16px; }
.prose p:last-child{ margin-bottom:0; }
.prose strong{ color:var(--green-deep); }

.two-col{ display:grid; grid-template-columns:1.05fr .95fr; gap:60px; align-items:start; }

.check-list{ display:grid; gap:14px; margin-top:22px; }
.check-list li{ display:flex; gap:12px; align-items:flex-start; font-size:15px; line-height:1.55; }
.check-list li svg{ flex:none; width:20px; height:20px; color:var(--gold); margin-top:1px; }

.mini-photo-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:8px; }
.mini-photo-grid img{ width:100%; height:170px; object-fit:cover; border-radius:2px; }

.price-table{ width:100%; border-collapse:collapse; margin-top:10px; }
.price-table th, .price-table td{ text-align:left; padding:16px 14px; border-bottom:1px solid var(--line); font-size:14.5px; }
.price-table th{ font-weight:700; color:var(--green-deep); font-size:13px; text-transform:uppercase; letter-spacing:.04em; }
.price-table td strong{ color:var(--green-deep); font-family:var(--font-display); font-size:17px; }
.price-table tr:last-child td{ border-bottom:none; }
.price-note{ font-size:13px; color:var(--ink-soft); margin-top:14px; }

.calc-box{
  background:var(--white); border:1px solid var(--line); border-radius:2px;
  padding:28px 26px; margin-top:30px;
}
.calc-box h3{ font-family:var(--font-display); font-weight:700; font-size:20px; color:var(--green-deep); margin-bottom:18px; }
.calc-row{ display:grid; grid-template-columns:1fr 1fr auto; gap:14px; align-items:end; }
.calc-row .field{ margin-bottom:0; }
.calc-result{ margin-top:18px; padding-top:18px; border-top:1px solid var(--line); display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; }
.calc-result .num{ font-family:var(--font-display); font-weight:800; font-size:32px; color:var(--green-deep); }
.calc-result span{ font-size:13px; color:var(--ink-soft); }

.faq-list{ margin-top:10px; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-item:first-child{ border-top:1px solid var(--line); }
.faq-q{
  width:100%; text-align:left; background:none; border:none; padding:20px 0;
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  font-family:var(--font-display); font-weight:700; font-size:16.5px; color:var(--green-deep);
}
.faq-q svg{ flex:none; width:18px; height:18px; transition:transform .2s ease; color:var(--gold); }
.faq-item.open .faq-q svg{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .25s ease; }
.faq-item.open .faq-a{ max-height:400px; }
.faq-a p{ padding:0 0 20px; font-size:15px; line-height:1.65; color:var(--ink-soft); max-width:680px; }

.related-pages{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:10px; }
.related-card{
  display:block; border:1px solid var(--line); border-radius:2px; overflow:hidden;
  background:var(--white); transition:border-color .2s ease, transform .2s ease;
}
.related-card:hover{ border-color:var(--gold); transform:translateY(-2px); }
.related-card img{ width:100%; height:150px; object-fit:cover; }
.related-card-body{ padding:16px 18px 20px; }
.related-card-body h4{ font-family:var(--font-display); font-weight:700; font-size:17px; color:var(--green-deep); margin-bottom:6px; }
.related-card-body p{ font-size:13.5px; color:var(--ink-soft); line-height:1.5; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1080px){
  .about .container{ grid-template-columns:1fr; }
  .about-media img{ height:400px; }
  .events-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery-grid{ grid-template-columns:repeat(3,1fr); }
  .nikah-grid{ grid-template-columns:repeat(3,1fr); }
  .trust-grid{ grid-template-columns:repeat(2,1fr); }
  .contact-grid{ grid-template-columns:1fr; gap:50px; }
  .nikah-story-head{ grid-template-columns:1fr; gap:18px; }
}
@media (max-width:760px){
  .topbar-loc span:last-child, .topbar{ font-size:12px; }
  nav.main-nav{ display:none; }
  .burger{ display:flex; }
  .header-actions{ gap:10px; }
  .header-actions .phone-link{ display:none; }
  .header-actions .btn-primary{ display:none; }
  .logo-mark .tagline{ display:none; }
  .hero{ min-height:92svh; }
  .hero-stats{ grid-template-columns:repeat(2,1fr); }
  .hero-stats div:nth-child(2){ border-right:none; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:150px; }
  .gallery-item.span-2x2{ grid-column:span 2; grid-row:span 2; }
  .nikah-grid{ grid-template-columns:repeat(2,1fr); }
  .trust-grid{ grid-template-columns:1fr 1fr; }
  .events-grid{ grid-template-columns:1fr; }
  .event-card{ min-height:360px; }
  .form-row{ grid-template-columns:1fr; }
  .booking-form{ padding:28px 20px; }
  .about-media-tag{ left:0; right:0; bottom:-24px; max-width:none; }
  .mobile-call-bar{ display:flex; }
  body{ padding-bottom:66px; }
  .footer-row{ flex-direction:column; text-align:center; }
  .two-col{ grid-template-columns:1fr; gap:36px; }
  .mini-photo-grid{ grid-template-columns:repeat(3,1fr); }
  .related-pages{ grid-template-columns:1fr; }
  .calc-row{ grid-template-columns:1fr; }
  .price-table th:nth-child(2), .price-table td:nth-child(2){ display:none; }
  .price-table th, .price-table td{ padding:14px 8px; font-size:13.5px; }
  .page-hero{ min-height:44svh; }
  .content-section{ padding:56px 0; }
}
