/* ============ Sumathi Narayanan Realty - brand palette from logo ============ */
:root {
  --red: #B01E28;          /* logo crimson */
  --red-dark: #8C161E;
  --red-light: #FBEDEE;
  --gray: #9B9DA0;         /* logo silver gray */
  --gray-light: #F4F4F5;
  --ink: #1A1A1A;          /* logo black */
  --ink-soft: #4A4A4E;
  --white: #FFFFFF;
  --radius: 12px;
  --shadow: 0 4px 18px rgba(26,26,26,.10);
  --shadow-lg: 0 10px 34px rgba(26,26,26,.16);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  color: var(--ink); background: var(--white); line-height: 1.6;
}
h1,h2,h3,h4 { font-family: 'Montserrat', 'Arial Narrow', Arial, sans-serif; font-weight: 800; line-height: 1.2; }
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 22px; }

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 100; background: var(--white);
  border-bottom: 3px solid var(--red); box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 8px 0; }
.brand { display: flex; align-items: center; gap: 11px; min-width: 0; color: var(--ink); }
.brand img { height: 54px; width: auto; flex: 0 0 auto; }
.brand-copy { display: flex; flex-direction: column; min-width: 0; line-height: 1.12; }
.brand-name {
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 800; color: var(--ink);
  display: block; font-size: clamp(.98rem, 1.6vw, 1.25rem); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.brand-sub {
  color: var(--ink-soft); font-family: 'Montserrat', Arial, sans-serif; font-size: .76rem;
  font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav a {
  color: var(--ink); font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; font-size: .92rem;
  padding: 9px 13px; border-radius: 8px; letter-spacing: .3px;
}
.nav a:hover { background: var(--red-light); color: var(--red); }
.nav a.active { color: var(--red); }
.nav a.cta { background: var(--red); color: var(--white); }
.nav a.cta:hover { background: var(--red-dark); }
.hamburger {
  display: none; align-items: center; gap: 7px; background: var(--white); border: 1.5px solid var(--red);
  border-radius: 8px; color: var(--red); cursor: pointer; font-family: 'Montserrat', Arial, sans-serif;
  font-size: .82rem; font-weight: 800; padding: 8px 10px; line-height: 1;
}
.hamburger-icon { font-size: 1.18rem; line-height: .8; }

/* ============ Hero ============ */
.hero {
  background: linear-gradient(135deg, var(--ink) 0%, #3a3a3e 55%, var(--red-dark) 100%);
  color: var(--white); padding: 22px 0 34px; position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; right: -160px; top: -90px; width: 420px; height: 420px;
  border: 28px solid rgba(255,255,255,.05); border-radius: 50%;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) 220px; gap: 24px; align-items: center; position: relative; z-index: 2; }
.hero-name { font-size: clamp(1.75rem, 3vw, 2.35rem); line-height: 1.08; margin-bottom: 3px; }
.hero-tag { font-family: 'Montserrat', Arial, sans-serif; font-weight: 800; color: #F1B9BD;
            font-size: clamp(.8rem, 1.35vw, .98rem); letter-spacing: 1.3px; text-transform: uppercase; margin: 4px 0 8px; }
.hero-photo img { width: 100%; max-height: 210px; object-fit: cover; border-radius: 10px;
                  border: 4px solid rgba(255,255,255,.22); box-shadow: 0 14px 38px rgba(0,0,0,.36); }
.hero p { max-width: 610px; font-size: .96rem; line-height: 1.46; color: #E8E8EA; margin-bottom: 12px; }
.hero-call {
  display: inline-flex; align-items: center; gap: 12px; background: var(--white); color: var(--ink);
  border-radius: 8px; padding: 8px 10px 8px 13px; box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.hero-call span {
  color: var(--ink-soft); font-family: 'Montserrat', Arial, sans-serif; font-size: .76rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: .6px;
}
.hero-call a {
  background: var(--red); color: var(--white); border-radius: 7px; font-family: 'Montserrat', Arial, sans-serif;
  font-size: .92rem; font-weight: 800; padding: 9px 12px;
}
.hero-call a:hover { background: var(--red-dark); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 11px 22px; border-radius: 8px; font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700; font-size: .95rem; letter-spacing: .4px; cursor: pointer; border: 0; transition: .18s;
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #000; }

/* ============ Stats bar ============ */
.stats-bar { background: var(--white); margin-top: -24px; position: relative; z-index: 5; }
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px;
  background: var(--gray-light); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
}
.stat { background: var(--white); text-align: center; padding: 14px 12px; }
.stat .v { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.65rem; font-weight: 800; color: var(--red); }
.stat .l { color: var(--ink-soft); font-size: .82rem; letter-spacing: .35px; text-transform: uppercase; }

/* ============ Sections ============ */
.section { padding: 32px 0; }
.section.alt { background: var(--gray-light); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 18px; }
.section-head .kicker {
  color: var(--red); font-family: 'Montserrat', Arial, sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px; font-size: .82rem;
}
.section-head h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin: 6px 0 6px; }
.section-head p { color: var(--ink-soft); }

/* ============ Listing cards ============ */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: .2s; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-photo { position: relative; aspect-ratio: 16/10; background: #ddd; overflow: hidden; display: block; color: inherit; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #45454a, var(--ink)); color: var(--gray);
}
.photo-placeholder svg { width: 74px; height: 74px; opacity: .6; }
.badge {
  position: absolute; top: 12px; left: 12px; background: var(--red); color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; font-size: .72rem;
  letter-spacing: 1.2px; text-transform: uppercase; padding: 5px 11px; border-radius: 6px;
}
.badge.sold { background: var(--ink); }
.badge.rent { background: #6B6D70; }
.card-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.card-price { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.45rem; font-weight: 800; color: var(--red); }
.card-price small { color: var(--ink-soft); font-size: .85rem; font-weight: 600; }
.card-addr { font-weight: 700; margin: 3px 0 1px; }
.card-town { color: var(--ink-soft); font-size: .92rem; }
.card-specs { display: flex; gap: 14px; margin: 12px 0; color: var(--ink-soft); font-size: .9rem; font-weight: 600; }
.card-specs span b { color: var(--ink); }
.card-desc { color: var(--ink-soft); font-size: .9rem; flex: 1; }
.card-more { color: var(--red); font-weight: 800; white-space: nowrap; }
.card-more:hover { color: var(--red-dark); }
.card-links { margin-top: 14px; display: flex; gap: 10px; }
.card-links .btn { padding: 9px 16px; font-size: .82rem; }

/* Filters */
.filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.chip {
  border: 2px solid var(--gray); background: var(--white); color: var(--ink-soft);
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; font-size: .85rem;
  padding: 8px 18px; border-radius: 999px; cursor: pointer; transition: .15s;
}
.chip:hover { border-color: var(--red); color: var(--red); }
.chip.on { background: var(--red); border-color: var(--red); color: var(--white); }

/* ============ Towns ============ */
.town-block { margin-bottom: 28px; }
.town-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 8px; border-bottom: 3px solid var(--red); padding-bottom: 10px; margin-bottom: 8px; }
.town-head h3 { font-size: 1.6rem; }
.town-head a { font-weight: 700; font-size: .9rem; }
.town-blurb { color: var(--ink-soft); margin-bottom: 16px; max-width: 850px; }
.town-stats { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.pill { background: var(--red-light); color: var(--red-dark); font-weight: 700; font-size: .85rem; padding: 6px 14px; border-radius: 999px; }
.pill.gray { background: var(--gray-light); color: var(--ink-soft); }
.mini-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.mini-card { background: var(--white); border: 1px solid #E5E5E7; border-left: 4px solid var(--red); border-radius: 10px; padding: 16px 18px; box-shadow: var(--shadow); }
.mini-card .p { font-family: 'Montserrat', Arial, sans-serif; font-weight: 800; color: var(--red); font-size: 1.15rem; }
.mini-card .a { font-weight: 700; }
.mini-card .s { color: var(--ink-soft); font-size: .87rem; margin: 4px 0; }
.mini-card .n { color: var(--gray); font-size: .82rem; font-style: italic; }
.disclaimer { color: var(--gray); font-size: .78rem; margin-top: 30px; text-align: center; }
.idx-search-shell { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; }
.idx-search-card { min-height: 280px; padding: 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 4px solid var(--red); }
.idx-search-card h2 { font-size: clamp(1.45rem, 2.4vw, 2rem); margin: 4px 0 8px; }
.idx-search-card p { color: var(--ink-soft); max-width: 650px; }
.idx-kicker { color: var(--red); font-family: 'Montserrat', Arial, sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: 1.6px; font-size: .78rem; }
@media (max-width: 880px) {
  .idx-search-card { min-height: 240px; padding: 24px 18px; display: grid; }
  .idx-search-card .btn { width: 100%; text-align: center; }
}

/* ============ About ============ */
.about-grid { display: grid; grid-template-columns: 300px 1fr; gap: 36px; align-items: start; }
.about-photo img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-photo { position: relative; }
.about-photo::after {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 3px solid var(--red); border-radius: var(--radius); z-index: -1;
}
.about-text p { margin-bottom: 16px; color: var(--ink-soft); font-size: 1.02rem; }
.cred-list { list-style: none; margin-top: 20px; }
.cred-list li { padding: 9px 0 9px 32px; position: relative; font-weight: 600; }
.cred-list li::before {
  content: "✓"; position: absolute; left: 0; top: 8px; width: 22px; height: 22px;
  background: var(--red); color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .75rem;
}

/* ============ Testimonials ============ */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px; }
.quote { background: var(--white); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow); position: relative; }
.quote::before { content: "“"; font-family: Georgia, serif; font-size: 4.5rem; color: var(--red); position: absolute; top: -6px; left: 18px; opacity: .25; }
.quote p { color: var(--ink-soft); font-style: italic; margin-bottom: 16px; }
.quote .who { font-weight: 700; }
.quote .src { color: var(--gray); font-size: .85rem; }
.stars { color: var(--red); letter-spacing: 3px; margin-bottom: 10px; }

/* ============ Connect page ============ */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.tab {
  border: 2px solid var(--gray); background: var(--white); border-radius: 10px; cursor: pointer;
  padding: 14px 22px; text-align: center; min-width: 130px; transition: .15s;
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; color: var(--ink-soft);
}
.tab .ico { font-size: 1.5rem; display: block; margin-bottom: 4px; }
.tab.on { border-color: var(--red); background: var(--red); color: var(--white); }
.tab:hover:not(.on) { border-color: var(--red); color: var(--red); }
.form-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 26px 28px; max-width: 760px; margin: 0 auto; }
.form-card h3 { margin-bottom: 6px; }
.form-card .sub { color: var(--ink-soft); margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label { font-weight: 700; font-size: .87rem; display: block; margin-bottom: 5px; }
input, select, textarea {
  width: 100%; padding: 11px 13px; border: 1.5px solid #D6D6D9; border-radius: 8px;
  font: inherit; background: var(--white); color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(176,30,40,.13); }
.form-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-actions .btn { width: 100%; }
.form-note { font-size: .82rem; color: var(--gray); margin-top: 12px; }
.form-success { background: #EDF7EE; border: 1.5px solid #4C9A52; color: #2C5E30; border-radius: 10px; padding: 18px; font-weight: 600; display: none; margin-top: 18px; }
.form-error { background: #FBEDEE; border: 1.5px solid var(--red); color: var(--red-dark); border-radius: 10px; padding: 18px; font-weight: 600; display: none; margin-top: 18px; }
.btn-whatsapp { background: #1F8F4D; color: var(--white); }
.btn-whatsapp:hover { background: #176E3B; transform: translateY(-2px); }

/* ============ Contact strip / footer ============ */
.cta-strip { background: var(--red); color: var(--white); padding: 26px 0; text-align: center; }
.cta-strip h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 10px; }
.cta-strip p { opacity: .92; margin-bottom: 16px; }
.cta-strip .btn { background: var(--white); color: var(--red); }
.cta-strip .btn:hover { background: var(--ink); color: var(--white); }
.site-footer { background: var(--ink); color: #C9C9CC; padding: 26px 0 16px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; margin-bottom: 24px; }
.site-footer h4 { color: var(--white); margin-bottom: 14px; font-size: 1.02rem; }
.site-footer a { color: #C9C9CC; display: block; padding: 3px 0; }
.site-footer a:hover { color: var(--white); }
.footer-logo { background: var(--white); border-radius: 10px; padding: 10px 14px; display: inline-block; margin-bottom: 14px; }
.footer-logo img { height: 58px; }
.footer-bottom { border-top: 1px solid #3A3A3E; padding-top: 18px; font-size: .8rem; color: #909093; text-align: center; }
.social-row { display: flex; gap: 10px; margin-top: 12px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; background: #3A3A3E; display: flex;
  align-items: center; justify-content: center; padding: 0; font-weight: 800; font-size: .8rem;
}
.social-row a:hover { background: var(--red); color: #fff; }
.eho { font-size: 1.2rem; }

/* Page banner (inner pages) */
.page-banner { background: linear-gradient(120deg, var(--ink), var(--red-dark)); color: var(--white); padding: 20px 0; }
.page-banner h1 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.page-banner p { color: #E4E4E6; max-width: 640px; margin-top: 8px; }

/* ============ Responsive ============ */
@media (max-width: 880px) {
  .container { padding: 0 16px; }
  .header-inner { gap: 10px; padding: 7px 0; }
  .brand { gap: 8px; flex: 1 1 auto; }
  .brand img { height: 42px; }
  .brand-name { font-size: .98rem; max-width: calc(100vw - 138px); }
  .brand-sub { font-size: .68rem; max-width: calc(100vw - 138px); }
  .hero { padding: 14px 0 22px; }
  .hero::after { right: -230px; top: -165px; width: 360px; height: 360px; border-width: 22px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) 92px; gap: 12px; align-items: start; }
  .hero-name { font-size: 1.24rem; white-space: nowrap; }
  .hero-tag { font-size: .68rem; letter-spacing: 1px; margin: 3px 0 6px; }
  .hero p { font-size: .84rem; line-height: 1.34; margin-bottom: 8px; }
  .hero-photo { max-width: none; }
  .hero-photo img { height: 104px; max-height: 104px; border-width: 3px; border-radius: 9px; }
  .hero-call { display: flex; width: 100%; max-width: 320px; justify-content: space-between; gap: 8px; padding: 7px 8px 7px 10px; }
  .hero-call span { font-size: .64rem; letter-spacing: .35px; }
  .hero-call a { font-size: .78rem; padding: 8px 9px; white-space: nowrap; }
  .hero-actions { gap: 9px; }
  .hero-actions .btn { flex: 1 1 136px; text-align: center; padding: 10px 11px; font-size: .8rem; }
  .stats-bar { margin-top: -12px; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 10px; }
  .stat { padding: 10px 8px; }
  .stat .v { font-size: 1.28rem; }
  .stat .l { font-size: .68rem; letter-spacing: .25px; }
  .section { padding: 24px 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 320px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-actions { grid-template-columns: 1fr; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white);
         flex-direction: column; align-items: stretch; padding: 10px 16px 14px; border-bottom: 3px solid var(--red); box-shadow: var(--shadow-lg); }
  .nav a { padding: 12px 10px; border-radius: 7px; font-size: .9rem; }
  .nav.open { display: flex; }
  .hamburger { display: inline-flex; flex: 0 0 auto; }
}

@media (max-width: 420px) {
  .brand-name { font-size: .88rem; max-width: calc(100vw - 130px); }
  .brand-sub { font-size: .62rem; max-width: calc(100vw - 130px); }
  .hero-grid { grid-template-columns: minmax(0, 1fr) 80px; gap: 9px; }
  .hero-photo img { height: 92px; max-height: 92px; }
  .hero-name { font-size: .96rem; }
  .hero p { font-size: .8rem; }
  .hero-call { max-width: none; }
  .hero-actions .btn { flex-basis: 120px; }
}

/* ============ Listing detail page ============ */
.detail-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; margin-top: 14px; align-items: start; }
.gallery { position: relative; }
.gallery-main { width: 100%; aspect-ratio: 16/10; border: 0; border-radius: var(--radius); overflow: hidden; background: #ddd; box-shadow: var(--shadow); cursor: zoom-in; padding: 0; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 42px; height: 42px; border: 0; border-radius: 50%;
  background: rgba(26,26,26,.74); color: var(--white); cursor: pointer;
  font-size: 1.35rem; line-height: 1; display: flex; align-items: center; justify-content: center;
}
.gallery-nav:hover { background: var(--red); }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.gallery-count {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  background: rgba(26,26,26,.74); color: var(--white); border-radius: 999px;
  padding: 5px 10px; font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; font-size: .78rem;
}
.detail-status-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.detail-tour-top { padding: 7px 13px; font-size: .78rem; }
.detail-info h1 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin: 4px 0 2px; }
.detail-price { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--red); margin-top: 10px; }
.detail-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 12px 0 16px; }
.detail-facts div { background: var(--gray-light); border-radius: 8px; padding: 10px 12px; }
.detail-facts span { display: block; color: var(--ink-soft); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.detail-facts strong { display: block; color: var(--ink); font-size: .96rem; margin-top: 2px; }
.detail-description {
  margin-top: 16px; background: var(--white); border: 1px solid #E6E6E8;
  border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow);
}
.detail-description h2 { font-size: 1.08rem; margin-bottom: 8px; }
.detail-description p { color: var(--ink-soft); line-height: 1.65; }
.detail-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 880px) {
  .detail-grid { grid-template-columns: 1fr; gap: 18px; }
  .detail-facts { grid-template-columns: 1fr; }
  .gallery-nav { width: 38px; height: 38px; }
}

.photo-lightbox {
  position: fixed; inset: 0; z-index: 240; display: none;
  align-items: center; justify-content: center; background: rgba(0,0,0,.88);
  padding: 34px 58px;
}
.photo-lightbox.open { display: flex; }
.photo-lightbox img {
  max-width: min(100%, 1180px); max-height: 86vh; object-fit: contain;
  border-radius: 8px; box-shadow: 0 18px 60px rgba(0,0,0,.42);
}
.lightbox-close {
  position: absolute; top: 16px; right: 18px; width: 42px; height: 42px;
  border: 0; border-radius: 50%; background: rgba(255,255,255,.16); color: var(--white);
  cursor: pointer; font-size: 2rem; line-height: 1;
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--red); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px;
  border: 0; border-radius: 50%; background: rgba(255,255,255,.16); color: var(--white);
  cursor: pointer; font-size: 1.55rem; line-height: 1; display: flex; align-items: center; justify-content: center;
}
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-count {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,.16); color: var(--white); border-radius: 999px;
  padding: 6px 12px; font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; font-size: .82rem;
}
@media (max-width: 560px) {
  .photo-lightbox { padding: 54px 12px 44px; }
  .lightbox-nav { width: 40px; height: 40px; top: auto; bottom: 14px; transform: none; }
  .lightbox-prev { left: 16px; }
  .lightbox-next { right: 16px; }
  .lightbox-count { bottom: 20px; }
}

/* ============ Tour form ============ */
.slot-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 560px) { .slot-fields { grid-template-columns: 1fr; } }

/* ============ In-page tour modal ============ */
.tour-modal-bg { position: fixed; inset: 0; background: rgba(26,26,26,.6); z-index: 200; display: none;
  align-items: flex-start; justify-content: center; overflow: auto; padding: 30px 14px; }
.tour-modal-bg.open { display: flex; }
.tour-modal { background: var(--white); border-radius: var(--radius); max-width: 640px; width: 100%;
  padding: 26px 28px; position: relative; box-shadow: var(--shadow-lg); }
.tour-close { position: absolute; top: 10px; right: 14px; background: none; border: 0; font-size: 1.9rem;
  color: var(--gray); cursor: pointer; line-height: 1; }
.tour-close:hover { color: var(--red); }
@media (max-width: 560px) { .tour-modal { padding: 20px 16px; } }
