@font-face { font-family: "Manrope"; src: url("/fonts/manrope-400.ttf") format("truetype"); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("/fonts/manrope-500.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("/fonts/manrope-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("/fonts/manrope-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("/fonts/manrope-800.ttf") format("truetype"); font-style: normal; font-weight: 800; font-display: swap; }
@font-face { font-family: "Outfit"; src: url("/fonts/outfit-500.ttf") format("truetype"); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Outfit"; src: url("/fonts/outfit-600.ttf") format("truetype"); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Outfit"; src: url("/fonts/outfit-700.ttf") format("truetype"); font-style: normal; font-weight: 700; font-display: swap; }

:root {
  --blue: #29ace3;
  --blue-dark: #087cae;
  --yellow: #fdc308;
  --ink: #122f38;
  --deep: #073843;
  --deepest: #052931;
  --text: #40545a;
  --muted: #718086;
  --line: #dce4e5;
  --soft: #f2f6f5;
  --sand: #f7f3eb;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(7, 56, 67, .12);
  --radius: 18px;
  --font: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-display: "Outfit", "Manrope", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; }
body { margin: 0; background: var(--white); color: var(--text); font-family: var(--font); font-size: 1rem; line-height: 1.68; -webkit-font-smoothing: antialiased; }
body, button, input, textarea, select { font-family: var(--font); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--yellow); color: var(--ink); }

.eyebrow { margin: 0 0 14px; color: var(--blue-dark); font-size: .78rem; font-weight: 800; letter-spacing: .16em; line-height: 1.45; text-transform: uppercase; }
.eyebrow--light { color: #8cddff; }
.display-heading { max-width: 760px; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { color: var(--ink); font-family: var(--font-display); font-weight: 600; line-height: 1.08; }
h1 { font-size: clamp(3rem, 6.5vw, 7rem); letter-spacing: -.055em; }
h2 { margin: 0; font-size: clamp(2.15rem, 4vw, 4.4rem); letter-spacing: -.045em; }
h3 { letter-spacing: -.025em; }
.large-copy { color: var(--ink); font-size: clamp(1.15rem, 1.7vw, 1.45rem); line-height: 1.55; }

.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 28px; border: 1px solid transparent; border-radius: 8px; padding: 0 24px; font-size: .92rem; font-weight: 800; letter-spacing: .01em; transition: transform .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 44px; padding-inline: 18px; }
.button--blue { background: var(--blue); color: var(--white); }
.button--blue:hover { background: var(--blue-dark); }
.button--yellow { background: var(--yellow); color: var(--deepest); }
.button--yellow:hover { background: #ffd43c; }
.button--glass { border-color: rgba(255,255,255,.65); background: rgba(3,32,38,.28); color: white; backdrop-filter: blur(10px); }
.button--glass:hover { background: rgba(255,255,255,.14); }
.button--outline-light { border-color: rgba(255,255,255,.65); color: white; background: transparent; }
.text-link { display: inline-flex; align-items: center; gap: 22px; border-bottom: 1px solid var(--blue); padding-bottom: 6px; color: var(--ink); font-size: .92rem; font-weight: 800; }
.text-link span { color: var(--blue-dark); transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px,-3px); }

/* Header */
.site-header { position: fixed; z-index: 80; top: 0; left: 0; width: 100%; color: white; transition: background .25s ease, box-shadow .25s ease; }
.site-header--solid { background: rgba(255,255,255,.98); box-shadow: 0 7px 30px rgba(4,42,51,.09); color: var(--ink); }
.utility-bar { border-bottom: 1px solid rgba(255,255,255,.14); font-size: .76rem; }
.site-header--solid .utility-bar { border-color: var(--line); background: var(--deepest); color: white; }
.utility-inner { display: flex; width: min(1380px, calc(100% - 64px)); min-height: 34px; align-items: center; justify-content: space-between; margin: auto; }
.utility-group { display: flex; align-items: center; gap: 16px; opacity: .9; }
.utility-group a:hover { color: var(--yellow); }
.nav-shell { display: flex; width: min(1380px, calc(100% - 64px)); min-height: 88px; align-items: center; justify-content: space-between; margin: 12px auto 0; border: 1px solid rgba(255,255,255,.22); border-radius: 20px; padding: 0 22px; background: rgba(8,37,43,.22); backdrop-filter: blur(17px); }
.site-header--solid .nav-shell { min-height: 76px; margin-top: 0; border-color: transparent; border-radius: 0; background: transparent; backdrop-filter: none; }
.brand { display: flex; width: 228px; height: 62px; align-items: center; overflow: hidden; border-radius: 8px; background: rgba(255,255,255,.95); }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: clamp(14px, 1.45vw, 25px); }
.nav-link { border: 0; padding: 18px 0; background: transparent; color: inherit; font-size: clamp(.78rem, .72vw, .88rem); font-weight: 700; white-space: nowrap; cursor: pointer; }
.nav-link { position: relative; }
.nav-link.is-active, .nav-dropdown.is-active > .nav-link { color: var(--yellow); }
.nav-link.is-active::after, .nav-dropdown.is-active > .nav-link::after { content: ""; position: absolute; right: 0; bottom: 10px; left: 0; height: 2px; border-radius: 99px; background: currentColor; }
.site-header--solid .nav-link.is-active, .site-header--solid .nav-dropdown.is-active > .nav-link { color: var(--blue-dark); }
.nav-link:hover { color: var(--yellow); }
.site-header--solid .nav-link:hover { color: var(--blue-dark); }
.nav-dropdown { position: relative; }
.nav-dropdown__trigger span { margin-left: 5px; font-size: .8em; }
.nav-dropdown__menu { position: absolute; top: calc(100% - 1px); left: -24px; display: grid; width: 250px; gap: 0; border-radius: 12px; padding: 10px; background: white; box-shadow: 0 24px 60px rgba(5,41,49,.18); color: var(--ink); opacity: 0; pointer-events: none; transform: translateY(8px); transition: .22s ease; }
.nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown:focus-within .nav-dropdown__menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown__menu a { display: flex; align-items: center; justify-content: space-between; border-radius: 8px; padding: 13px 14px; font-size: .9rem; font-weight: 700; }
.nav-dropdown__menu a:hover, .nav-dropdown__menu a.is-active { background: var(--soft); color: var(--blue-dark); }
.menu-toggle { display: none; width: 46px; height: 46px; place-content: center; gap: 6px; border: 0; border-radius: 50%; background: var(--blue); }
.menu-toggle span { display: block; width: 20px; height: 2px; background: white; transition: .2s ease; }
.menu-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { display: none; }

/* Home hero */
.hero { position: relative; display: flex; min-height: max(760px, 100svh); align-items: center; overflow: hidden; background: var(--deepest); color: white; }
.hero-slide { position: absolute; inset: 0; background-position: center; background-size: cover; opacity: 0; transform: scale(1.035); transition: opacity 1s ease, transform 7s ease; }
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,33,39,.9) 0%, rgba(4,40,47,.62) 43%, rgba(4,33,39,.18) 72%, rgba(4,26,31,.25) 100%), linear-gradient(0deg, rgba(3,31,37,.48), transparent 47%); }
.hero-content { position: relative; z-index: 2; display: grid; width: min(1380px, calc(100% - 64px)); grid-template-columns: minmax(0,1fr) 390px; align-items: center; gap: 70px; margin: 140px auto 90px; }
.hero-copy { max-width: 750px; animation: reveal .7s ease both; }
.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin: 0 0 22px; color: #dcecf0; font-size: .84rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-icon { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--yellow); border-radius: 50%; color: var(--yellow); font-size: 1.2rem; }
.hero h1 { max-width: 780px; margin: 0; color: white; font-size: clamp(4.2rem, 7.8vw, 8.2rem); font-weight: 750; letter-spacing: -.075em; line-height: .88; }
.hero-lede { max-width: 585px; margin: 30px 0 0; color: rgba(255,255,255,.9); font-size: clamp(1.15rem, 1.65vw, 1.55rem); line-height: 1.45; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-planner { border: 1px solid rgba(255,255,255,.22); border-radius: 18px; padding: 28px; background: rgba(5,35,41,.72); color: white; box-shadow: 0 24px 70px rgba(2,25,30,.25); backdrop-filter: blur(18px); }
.hero-planner h2 { margin-bottom: 10px; color: white; font-size: 1.75rem; letter-spacing: -.035em; }
.hero-planner > p:not(.eyebrow) { margin: 0 0 20px; color: rgba(255,255,255,.75); font-size: .92rem; }
.hero-planner .enquiry-form { gap: 13px; }
.hero-planner .enquiry-form textarea { min-height: 72px; }
.hero-planner .button { width: 100%; }
.hero-planner .enquiry-form--compact label > span { color: rgba(255,255,255,.78); }
.hero-footer { position: absolute; z-index: 3; right: max(32px, calc((100% - 1380px)/2)); bottom: 43px; left: max(32px, calc((100% - 1380px)/2)); display: flex; align-items: center; justify-content: space-between; }
.hero-pagination { display: flex; align-items: center; gap: 14px; color: white; font-size: .8rem; font-weight: 700; }
.hero-dots { display: flex; gap: 7px; }
.hero-dots button { width: 42px; height: 3px; border: 0; padding: 0; background: rgba(255,255,255,.4); cursor: pointer; }
.hero-dots button.is-active { background: var(--yellow); }
.hero-controls { display: flex; gap: 10px; }
.hero-controls button { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; background: rgba(4,34,41,.2); color: white; font-size: 1.2rem; cursor: pointer; backdrop-filter: blur(7px); transition: .2s ease; }
.hero-controls button:hover { border-color: var(--yellow); background: var(--yellow); color: var(--deepest); }
.scroll-cue { display: none; }
.scroll-cue i { color: var(--yellow); font-style: normal; font-size: 1rem; }
@keyframes reveal { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); width: 100%; background: var(--deep); color: white; }
.trust-strip div { display: flex; min-height: 108px; align-items: center; justify-content: center; gap: 13px; border-right: 1px solid rgba(255,255,255,.12); padding: 22px; }
.trust-strip strong { color: var(--yellow); font-size: 1.65rem; line-height: 1; }
.trust-strip span { max-width: 135px; color: rgba(255,255,255,.78); font-size: .8rem; line-height: 1.45; text-transform: uppercase; }

/* Sections */
.section { padding: 110px max(32px, calc((100% - 1240px)/2)); }
.section--soft { background: var(--soft); }
.section-grid { display: grid; gap: 90px; }
.section-grid--intro { grid-template-columns: .9fr 1.1fr; align-items: start; }
.intro-section h2 { max-width: 620px; }
.intro-copy > p:first-of-type { margin-top: 0; }
.intro-copy .text-link { margin-top: 18px; }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.section-heading-row h2 { max-width: 760px; font-size: clamp(2.2rem, 3.8vw, 4rem); }

.experience-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.experience-card { min-width: 0; overflow: hidden; border-radius: var(--radius); background: white; box-shadow: 0 10px 36px rgba(5,50,59,.06); transition: transform .3s ease, box-shadow .3s ease; }
.experience-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.experience-card__image { position: relative; display: block; height: 280px; overflow: hidden; background: #dfe8e9; }
.experience-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.experience-card:hover .experience-card__image img { transform: scale(1.045); }
.experience-card__type { position: absolute; top: 16px; left: 16px; border-radius: 999px; padding: 8px 12px; background: rgba(5,44,52,.84); color: white; font-size: .73rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.experience-card__body { padding: 26px; }
.experience-card__meta { display: flex; min-height: 25px; justify-content: space-between; gap: 12px; color: var(--blue-dark); font-size: .74rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.experience-card h3 { min-height: 58px; margin: 13px 0 12px; font-size: 1.5rem; }
.experience-card h3 a:hover { color: var(--blue-dark); }
.attraction-tags { display: flex; min-height: 54px; flex-wrap: wrap; align-content: start; gap: 6px; margin: 0 0 13px; }
.attraction-tags span { border: 1px solid #d6e8ed; border-radius: 999px; padding: 6px 10px; background: #f4fafc; color: var(--blue-dark); font-size: .72rem; font-weight: 750; }
.experience-card__body > p { min-height: 82px; margin: 0; color: var(--muted); font-size: .96rem; line-height: 1.68; }
.experience-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 22px; border-top: 1px solid var(--line); padding-top: 18px; }
.experience-card__footer strong { color: var(--ink); font-size: 1.05rem; }
.experience-card__footer a { color: var(--blue-dark); font-size: .84rem; font-weight: 800; }

.journey-bands { display: grid; grid-template-columns: 1fr 1fr; min-height: 650px; }
.journey-band { position: relative; display: flex; align-items: end; overflow: hidden; padding: 70px; background-position: center; background-size: cover; color: white; }
.journey-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,34,41,.92), rgba(4,39,46,.16)); transition: background .4s ease; }
.journey-band:hover::before { background: linear-gradient(0deg, rgba(3,34,41,.9), rgba(4,39,46,.05)); }
.journey-band--island { background-image: url("/images/safari-blue.jpg"); }
.journey-band--safari { background-image: url("/images/tanzania-safari.webp"); }
.journey-band__content { position: relative; max-width: 550px; }
.journey-band h2 { margin-bottom: 20px; color: white; }
.journey-band p:not(.eyebrow) { max-width: 470px; margin-bottom: 30px; color: rgba(255,255,255,.78); }

.safari-catalogue { background: var(--sand); }
.service-directory { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; padding: 100px max(32px, calc((100% - 1240px)/2)); background: var(--deep); color: white; }
.service-directory__intro h2 { color: white; font-size: clamp(2.3rem,4vw,4.1rem); }
.service-directory__intro > p:last-child { color: rgba(255,255,255,.67); }
.service-directory__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.service-directory__grid > a { display: flex; min-height: 240px; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 28px; background: rgba(255,255,255,.045); transition: border-color .25s ease, background .25s ease, transform .25s ease; }
.service-directory__grid > a:hover { border-color: var(--blue); background: rgba(41,172,227,.1); transform: translateY(-3px); }
.service-directory__grid span { color: var(--yellow); font-size: .78rem; font-weight: 800; }
.service-directory__grid h3 { margin: auto 0 5px; color: white; font-size: 1.45rem; }
.service-directory__grid p { margin: 0 0 18px; color: rgba(255,255,255,.72); font-size: .9rem; }
.service-directory__grid i { color: #8cddff; font-size: .82rem; font-style: normal; font-weight: 800; }

.local-section { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 90px; }
.local-visual { position: relative; min-height: 620px; }
.local-visual > img { width: 100%; height: 620px; border-radius: 22px; object-fit: cover; }
.local-badge { position: absolute; right: -38px; bottom: 46px; display: flex; width: 250px; min-height: 130px; flex-direction: column; justify-content: center; border-radius: 12px; padding: 24px; background: var(--yellow); color: var(--deepest); box-shadow: var(--shadow); }
.local-badge strong { font-size: 1.6rem; }
.local-badge span { font-size: .86rem; line-height: 1.5; }
.local-copy h2 { margin-bottom: 25px; }
.local-copy > p:not(.eyebrow) { font-size: 1.05rem; }
.check-list, .plain-list { display: grid; gap: 12px; margin: 28px 0; padding: 0; list-style: none; }
.check-list li, .plain-list li { position: relative; padding-left: 31px; color: var(--text); }
.check-list li::before { content: "✓"; position: absolute; top: 1px; left: 0; display: grid; width: 21px; height: 21px; place-items: center; border-radius: 50%; background: rgba(41,172,227,.15); color: var(--blue-dark); font-size: .72rem; font-weight: 900; }
.plain-list li::before { content: "—"; position: absolute; left: 0; color: var(--blue-dark); }

.planning-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; padding: 100px max(32px, calc((100% - 1240px)/2)); background: var(--deep); color: white; }
.planning-copy h2 { color: white; }
.planning-copy > p:not(.eyebrow) { max-width: 450px; color: rgba(255,255,255,.72); }
.planning-contact { display: grid; gap: 4px; margin-top: 35px; }
.planning-contact span { color: #8cddff; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.planning-contact a { color: white; font-size: 1.15rem; font-weight: 800; }

.enquiry-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row--three { grid-template-columns: repeat(3,1fr); }
.enquiry-form label, .admin-form label { display: grid; gap: 7px; color: inherit; }
.enquiry-form label > span, .admin-form label > span { font-size: .78rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; outline: 0; padding: 13px 15px; background: rgba(255,255,255,.07); color: white; transition: border .2s ease, background .2s ease; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { border-color: var(--blue); background: rgba(255,255,255,.11); }
.enquiry-form select option { color: var(--ink); }
.enquiry-form ::placeholder { color: rgba(255,255,255,.48); }
.form-submit-row { display: flex; align-items: center; gap: 25px; }
.form-submit-row p { margin: 0; color: rgba(255,255,255,.68); font-size: .84rem; }
.form-submit-row a { color: #8cddff; }
.form-notice { margin: 0; border-radius: 8px; padding: 10px 14px; font-size: .9rem; }
.form-notice--success { background: rgba(77,217,153,.14); color: #a6f0c9; }
.form-notice--error { background: rgba(255,91,91,.14); color: #ffc0c0; }
.enquiry-form--compact input, .enquiry-form--compact textarea { border-color: var(--line); background: white; color: var(--ink); }
.enquiry-form--compact ::placeholder { color: #a2abad; }
.enquiry-form--compact label > span { color: var(--ink); }
.enquiry-form--compact .form-submit-row { display: grid; }
.enquiry-form--compact .form-submit-row p { color: var(--muted); }

.guide-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.guide-grid > a { display: flex; min-height: 300px; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; background: white; transition: transform .25s ease, border-color .25s ease; }
.guide-grid > a:hover { transform: translateY(-4px); border-color: var(--blue); }
.guide-grid span, .guide-grid i { color: var(--blue-dark); font-size: .78rem; font-style: normal; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.guide-grid h3 { margin: 40px 0; font-size: 1.45rem; }

/* Inner pages */
.inner-hero { position: relative; display: flex; min-height: 620px; align-items: end; overflow: hidden; padding: 180px max(32px, calc((100% - 1240px)/2)) 82px; color: white; }
.inner-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.inner-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,37,44,.89), rgba(3,37,44,.3)), linear-gradient(0deg, rgba(3,37,44,.65), transparent 50%); }
.inner-hero__content { position: relative; max-width: 900px; }
.inner-hero__content > p { margin: 0 0 15px; color: var(--yellow); font-size: .84rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.inner-hero__content h1 { margin: 0 0 22px; color: white; font-size: clamp(3.5rem, 6.5vw, 6.8rem); }
.inner-hero__content > span { display: block; max-width: 720px; color: rgba(255,255,255,.82); font-size: 1.2rem; }
.listing-intro { display: grid; grid-template-columns: .8fr 1.2fr; align-items: end; gap: 90px; }
.listing-intro h2 { font-size: clamp(2.3rem,4vw,4rem); }
.listing-intro > p { max-width: 700px; margin: 0; font-size: 1.12rem; }
.listing-section { padding-top: 90px; }
.listing-note { display: flex; min-height: 450px; flex-direction: column; align-items: center; justify-content: center; padding: 90px 32px; background: var(--deep); color: white; text-align: center; }
.listing-note h2 { max-width: 850px; color: white; }
.listing-note > p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.7); }
.listing-note .button { margin-top: 18px; }
.catalogue-note { max-width: 440px; margin: 0; color: var(--muted); font-size: 1rem; }
.activity-categories { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.activity-categories > a { display: flex; min-height: 350px; flex-direction: column; border-radius: 16px; padding: 34px; background: var(--deep); color: white; transition: transform .25s ease, background .25s ease; }
.activity-categories > a:nth-child(2) { background: var(--blue-dark); }
.activity-categories > a:nth-child(3) { background: #145568; }
.activity-categories > a:hover { transform: translateY(-5px); }
.activity-categories span { color: var(--yellow); font-size: .8rem; font-weight: 800; }
.activity-categories h2 { margin: auto 0 15px; color: white; font-size: 2rem; }
.activity-categories p { margin: 0 0 25px; color: rgba(255,255,255,.7); }
.activity-categories i { color: #bcecff; font-size: .82rem; font-style: normal; font-weight: 800; }
.property-hero { display: flex; min-height: 650px; align-items: end; padding: 190px max(32px,calc((100% - 1240px)/2)) 80px; background: linear-gradient(90deg,rgba(3,36,43,.88),rgba(3,36,43,.22)), url("https://images.pexels.com/photos/753626/pexels-photo-753626.jpeg?auto=compress&cs=tinysrgb&w=2000") center/cover; color: white; }
.property-hero > div { max-width: 860px; }
.property-hero h1 { margin: 0; color: white; }
.property-hero p:last-child { max-width: 680px; color: rgba(255,255,255,.78); font-size: 1.2rem; }
.property-intro, .luxury-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.property-services { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; padding-block: 0; background: var(--line); }
.property-services article { min-height: 320px; padding: 42px 30px; background: var(--soft); }
.property-services span { color: var(--blue-dark); font-size: .8rem; font-weight: 800; }
.property-services h3 { margin-top: 75px; font-size: 1.35rem; }

.detail-hero { position: relative; display: flex; min-height: clamp(700px, 86svh, 880px); align-items: end; overflow: hidden; padding: 185px max(32px, calc((100% - 1240px)/2)) 70px; background: var(--deepest); color: white; }
.detail-hero__media { position: absolute; inset: 0; overflow: hidden; background: var(--deepest); }
.detail-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; transform: scale(1.005); }
.detail-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,30,36,.92) 0%, rgba(2,30,36,.68) 44%, rgba(2,30,36,.2) 76%), linear-gradient(0deg, rgba(2,30,36,.88) 0%, rgba(2,30,36,.08) 62%); }
.detail-hero__content { position: relative; width: 100%; }
.detail-hero nav, .article-page header nav { display: flex; gap: 10px; margin-bottom: 30px; color: rgba(255,255,255,.76); font-size: .82rem; font-weight: 700; }
.detail-hero nav a:hover { color: var(--yellow); }
.detail-hero h1 { max-width: 980px; margin: 0 0 22px; color: white; font-size: clamp(3.2rem,5.9vw,6.5rem); }
.detail-hero__summary { max-width: 720px; margin: 0; color: rgba(255,255,255,.84); font-size: 1.12rem; line-height: 1.55; }
.detail-hero__bottom { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-top: 35px; }
.detail-facts { display: flex; flex-wrap: wrap; gap: 10px; }
.detail-facts span { display: grid; min-width: 180px; gap: 2px; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; padding: 13px 18px; background: rgba(5,37,44,.42); color: white; font-weight: 800; backdrop-filter: blur(10px); }
.detail-facts small { color: #8cddff; font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.detail-layout { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(390px,.8fr); align-items: start; gap: 80px; }
.detail-overview { border-left: 5px solid var(--yellow); border-radius: 0 16px 16px 0; padding: 34px 38px; background: var(--soft); }
.detail-lede { margin-top: 0; color: var(--ink); font-size: 1.55rem; line-height: 1.52; }
.detail-description { margin-top: 42px; }
.detail-description p { margin: 0; color: var(--text); font-size: 1.08rem; line-height: 1.85; white-space: pre-line; }
.detail-highlights { display: flex; flex-wrap: wrap; gap: 9px; margin: 25px 0; }
.detail-highlights span { border-radius: 999px; padding: 8px 12px; background: #eaf8fd; color: var(--blue-dark); font-size: .8rem; font-weight: 750; }
.detail-block { margin-top: 70px; }
.detail-block h2 { font-size: 2.2rem; }
.itinerary-list { display: grid; gap: 0; margin: 30px 0 0; padding: 0; list-style: none; }
.itinerary-list li { position: relative; display: grid; grid-template-columns: 52px 1fr; gap: 20px; border-top: 1px solid var(--line); padding: 24px 0; }
.itinerary-list li span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: #eaf8fd; color: var(--blue-dark); font-size: .84rem; font-weight: 800; }
.itinerary-list li p { margin: 0; color: var(--ink); }
.include-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.booking-card { position: sticky; top: 115px; scroll-margin-top: 120px; overflow: hidden; border: 1px solid #d8e5e7; border-top: 6px solid var(--blue); border-radius: 18px; padding: 32px; background: white; box-shadow: 0 28px 70px rgba(5,47,56,.14); }
.booking-card__topline { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin: -10px 0 26px; border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.booking-card__topline span { color: var(--blue-dark); font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.booking-card__topline strong { color: var(--ink); font-family: var(--font-display); font-size: 1.3rem; }
.booking-card h2 { margin: 0 0 12px; font-size: 2.1rem; }
.booking-card > p:not(.eyebrow) { margin: 0 0 25px; color: var(--muted); font-size: .96rem; line-height: 1.65; }
.package-booking-form { display: grid; gap: 14px; }
.booking-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.package-booking-form label { display: grid; gap: 7px; }
.package-booking-form label > span { color: var(--ink); font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.package-booking-form input, .package-booking-form textarea { width: 100%; min-width: 0; border: 1px solid #cbdadd; border-radius: 9px; outline: 0; padding: 13px 14px; background: #f8fbfb; color: var(--ink); font: inherit; font-size: .9rem; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.package-booking-form input:focus, .package-booking-form textarea:focus { border-color: var(--blue); background: white; box-shadow: 0 0 0 4px rgba(41,172,227,.12); }
.package-booking-form textarea { min-height: 92px; resize: vertical; }
.package-booking-form ::placeholder { color: #8a999d; }
.booking-whatsapp-button { display: flex; width: 100%; min-height: 58px; align-items: center; justify-content: center; gap: 11px; border: 0; border-radius: 9px; padding: 12px 17px; background: #25d366; color: white; font: inherit; font-size: .92rem; font-weight: 800; cursor: pointer; box-shadow: 0 10px 24px rgba(37,211,102,.2); transition: transform .2s ease, background .2s ease; }
.booking-whatsapp-button:hover { background: #1fbd5a; transform: translateY(-2px); }
.booking-whatsapp-button:disabled { cursor: wait; opacity: .72; transform: none; }
.booking-whatsapp-button svg { width: 23px; fill: currentColor; }
.booking-whatsapp-button > span { margin-left: auto; }
.booking-form-note { margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.55; text-align: center; }
.booking-assurances { display: grid; gap: 8px; margin-top: 24px; border-top: 1px solid var(--line); padding-top: 20px; color: var(--text); font-size: .78rem; font-weight: 700; }
.booking-assurances span::first-letter { color: var(--blue-dark); }
.experience-grid--three { grid-template-columns: repeat(3,1fr); }
.mini-card { overflow: hidden; border-radius: var(--radius); background: white; }
.mini-card > img { width: 100%; height: 230px; object-fit: cover; }
.mini-card > div { padding: 24px; }
.mini-card span { color: var(--blue-dark); font-size: .8rem; font-weight: 800; }
.mini-card h3 { min-height: 50px; font-size: 1.3rem; }
.mini-card a { color: var(--blue-dark); font-size: .84rem; font-weight: 800; }

/* About and contact */
.about-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.values-section { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; padding-block: 0; background: var(--line); }
.values-section article { min-height: 360px; padding: 50px 34px; background: var(--soft); }
.values-section span, .contact-steps span { color: var(--blue-dark); font-size: .82rem; font-weight: 800; }
.values-section h3 { margin-top: 90px; font-size: 1.45rem; }
.language-section { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.language-visual img { width: 100%; height: 580px; border-radius: 20px; object-fit: cover; }
.language-section h2 { margin-bottom: 24px; }
.language-section .button { margin-top: 20px; }
.contact-hero { display: flex; min-height: 580px; align-items: end; padding: 180px max(32px, calc((100% - 1240px)/2)) 80px; background: radial-gradient(circle at 80% 30%, rgba(41,172,227,.36), transparent 35%), var(--deepest); color: white; }
.contact-hero h1 { max-width: 900px; margin: 0 0 24px; color: white; }
.contact-hero p:last-child { max-width: 670px; color: rgba(255,255,255,.72); font-size: 1.14rem; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 90px; }
.contact-details h2, .contact-form-card h2 { font-size: 2.7rem; }
.contact-details dl { margin-top: 40px; }
.contact-details dl div { display: grid; grid-template-columns: 120px 1fr; border-top: 1px solid var(--line); padding: 18px 0; }
.contact-details dt { color: var(--muted); font-size: .82rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.contact-details dd { margin: 0; color: var(--ink); font-weight: 700; }
.contact-form-card { border-radius: 18px; padding: 40px; background: var(--deep); color: white; box-shadow: var(--shadow); }
.contact-form-card h2 { margin-bottom: 30px; color: white; }
.contact-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; padding-block: 0; background: var(--line); }
.contact-steps > div { min-height: 270px; padding: 45px; background: var(--soft); }
.contact-steps h3 { margin-top: 60px; font-size: 1.35rem; }

/* Travel guide */
.guide-hero { padding: 210px max(32px, calc((100% - 1240px)/2)) 90px; background: var(--deep); color: white; }
.guide-hero h1 { max-width: 950px; margin: 0; color: white; }
.guide-hero > p:last-child { max-width: 700px; color: rgba(255,255,255,.72); font-size: 1.2rem; }
.guide-list { display: grid; gap: 34px; }
.guide-card { display: grid; grid-template-columns: 420px 1fr; gap: 50px; border-bottom: 1px solid var(--line); padding-bottom: 34px; }
.guide-card__image { height: 280px; overflow: hidden; border-radius: 16px; }
.guide-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.guide-card:hover .guide-card__image img { transform: scale(1.04); }
.guide-card > div > span { color: var(--blue-dark); font-size: .8rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.guide-card h2 { margin: 14px 0; font-size: 2rem; }
.guide-card h2 a:hover { color: var(--blue-dark); }
.article-page { padding-top: 145px; }
.article-page > header { padding: 80px max(32px, calc((100% - 980px)/2)) 55px; text-align: center; }
.article-page header nav { justify-content: center; color: var(--muted); }
.article-page header h1 { margin: 0 auto 25px; font-size: clamp(3rem,5.5vw,5.8rem); }
.article-page header > p:last-child { max-width: 760px; margin-inline: auto; font-size: 1.18rem; }
.article-cover { width: min(1240px, calc(100% - 64px)); height: min(650px, 55vw); margin: 0 auto; border-radius: 20px; object-fit: cover; }
.article-body { width: min(760px, calc(100% - 48px)); margin: 70px auto 110px; }
.article-intro { color: var(--ink); font-size: 1.4rem; line-height: 1.6; }
.article-body section { margin-top: 50px; }
.article-body h2 { font-size: 2.15rem; }
.article-body p { font-size: 1.04rem; }
.article-body aside { margin-top: 70px; border-radius: 16px; padding: 38px; background: var(--deep); color: white; }
.article-body aside h2 { color: white; }
.article-body aside p { color: rgba(255,255,255,.72); }

/* Footer */
.footer { background: var(--deepest); color: rgba(255,255,255,.68); }
.footer-cta { display: flex; align-items: center; justify-content: space-between; gap: 40px; border-bottom: 1px solid rgba(255,255,255,.12); padding: 78px max(32px, calc((100% - 1240px)/2)); }
.footer-cta h2 { max-width: 760px; color: white; font-size: clamp(2.4rem,4.2vw,4.5rem); }
.footer-main { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; padding: 80px max(32px, calc((100% - 1240px)/2)); }
.footer-logo-wrap { width: 250px; overflow: hidden; border-radius: 8px; background: white; }
.footer-brand > p { max-width: 400px; }
.footer-contact { color: #8cddff; font-weight: 800; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 38px; }
.footer-links > div { display: grid; align-content: start; gap: 9px; }
.footer-links h3 { margin: 0 0 15px; color: white; font-size: .88rem; letter-spacing: .09em; text-transform: uppercase; }
.footer-links a, .footer-links p { margin: 0; font-size: .94rem; line-height: 1.6; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.1); padding: 22px max(32px, calc((100% - 1240px)/2)); font-size: .8rem; }

.whatsapp-button { position: fixed; z-index: 70; right: 22px; bottom: 22px; display: flex; height: 54px; align-items: center; gap: 10px; border-radius: 999px; padding: 0 18px 0 14px; background: #25d366; color: white; box-shadow: 0 12px 34px rgba(5,53,48,.25); font-size: .88rem; font-weight: 800; transition: transform .2s ease; }
.whatsapp-button:hover { transform: translateY(-3px); }
.whatsapp-button svg { width: 26px; fill: white; }
.not-found { min-height: 75vh; padding: 230px max(32px, calc((100% - 900px)/2)) 120px; text-align: center; }
.not-found h1 { margin: 0; }
.not-found .button { margin-top: 20px; }

/* Admin */
.admin-gate { display: grid; min-height: 100vh; place-items: center; padding: 30px; background: var(--deepest); }
.admin-claim { width: min(650px,100%); border-radius: 20px; padding: 46px; background: white; box-shadow: var(--shadow); text-align: center; }
.admin-claim h1 { margin: 0; font-size: 3rem; }
.admin-claim .button { margin-top: 16px; }
.admin-app { min-height: 100vh; padding: 38px max(24px,calc((100% - 1450px)/2)) 90px; background: #eef3f4; }
.admin-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.admin-top h1 { margin: 0; font-size: 2.5rem; }
.admin-user { display: flex; align-items: center; gap: 18px; font-size: .88rem; font-weight: 700; }
.admin-user a { color: var(--blue-dark); }
.admin-tabs { display: flex; gap: 8px; margin: 36px 0 22px; border-bottom: 1px solid #cbd7d9; }
.admin-tabs button, .admin-tabs a { display: flex; align-items: center; gap: 8px; border: 0; border-bottom: 3px solid transparent; padding: 13px 18px; background: transparent; color: var(--muted); font-weight: 800; cursor: pointer; white-space: nowrap; }
.admin-tabs button.is-active, .admin-tabs a.is-active { border-color: var(--blue); color: var(--ink); }
.admin-tabs span { display: grid; min-width: 24px; height: 24px; place-items: center; border-radius: 50%; background: white; font-size: .78rem; }
.admin-notice { border-radius: 9px; padding: 12px 16px; background: #dff4fc; color: var(--blue-dark); font-size: .9rem; font-weight: 700; }
.admin-workspace { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(380px,.85fr); align-items: start; gap: 24px; }
.admin-form, .admin-list, .admin-enquiries { border-radius: 16px; padding: 30px; background: white; box-shadow: 0 10px 30px rgba(7,56,67,.05); }
.admin-form { display: grid; gap: 18px; }
.admin-form__heading, .admin-list__heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 8px; }
.admin-form h2, .admin-list h2, .admin-enquiries h2 { font-size: 1.75rem; }
.admin-form input, .admin-form select, .admin-form textarea { width: 100%; border: 1px solid #ccd8da; border-radius: 8px; outline: 0; padding: 11px 12px; background: white; color: var(--ink); }
.admin-form input:focus, .admin-form select:focus, .admin-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(41,172,227,.1); }
.admin-text-button { border: 0; background: transparent; color: var(--blue-dark); font-size: .84rem; font-weight: 800; cursor: pointer; }
.admin-switches { display: flex; flex-wrap: wrap; gap: 20px; }
.admin-switches label { display: flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 700; }
.admin-switches input[type="checkbox"] { width: 18px; }
.admin-switches input[type="number"] { width: 100px; }
.image-uploader { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 16px; border: 1px dashed #bccacc; border-radius: 10px; padding: 13px; }
.image-uploader img { width: 150px; height: 100px; border-radius: 7px; object-fit: cover; }
.image-uploader input { border: 0; padding: 0; }
.image-uploader small { color: var(--muted); }
.admin-list { position: sticky; top: 20px; max-height: calc(100vh - 40px); overflow-y: auto; }
.admin-item { display: grid; grid-template-columns: 92px 1fr auto; align-items: center; gap: 14px; border-top: 1px solid var(--line); padding: 14px 0; }
.admin-item > img { width: 92px; height: 68px; border-radius: 7px; object-fit: cover; }
.admin-item h3 { margin: 4px 0; font-size: 1.02rem; }
.admin-item p, .admin-item span { margin: 0; color: var(--muted); font-size: .78rem; }
.admin-item > div:last-child { display: grid; gap: 5px; }
.admin-item button { border: 0; background: transparent; color: var(--blue-dark); font-size: .82rem; font-weight: 800; cursor: pointer; }
.admin-item button.danger { color: #c24848; }
.admin-enquiries { overflow-x: auto; }
.enquiry-table { min-width: 900px; }
.enquiry-table__head, .enquiry-table article { display: grid; grid-template-columns: 1fr 2fr .8fr .7fr; gap: 20px; border-bottom: 1px solid var(--line); padding: 16px 0; }
.enquiry-table__head { color: var(--muted); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.enquiry-table article > div { display: grid; align-content: start; gap: 3px; }
.enquiry-table article a { color: var(--blue-dark); font-size: .82rem; }
.enquiry-table article p, .enquiry-table article small, .enquiry-table article time { margin: 0; color: var(--muted); font-size: .82rem; }
.enquiry-table select { height: 38px; border: 1px solid var(--line); border-radius: 7px; background: white; }

@media (max-width: 1100px) {
  .desktop-nav { gap: 18px; }
  .section { padding-block: 85px; }
  .experience-grid { grid-template-columns: repeat(2,1fr); }
  .journey-band { padding: 50px; }
  .local-section, .detail-layout, .language-section { gap: 55px; }
  .service-directory { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .admin-workspace { grid-template-columns: 1fr; }
  .admin-list { position: static; max-height: none; }
  .hero-content { grid-template-columns: minmax(0,1fr) 340px; gap: 35px; }
}

@media (max-width: 1180px) {
  .utility-group--right { display: none; }
  .nav-shell { width: calc(100% - 32px); min-height: 72px; margin-top: 8px; padding-inline: 14px; }
  .brand { width: 182px; height: 50px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .mobile-menu { position: absolute; top: 118px; right: 16px; left: 16px; display: grid; max-height: 0; overflow: hidden; border-radius: 14px; padding: 0 20px; background: white; color: var(--ink); opacity: 0; box-shadow: var(--shadow); transition: .3s ease; }
  .mobile-menu.is-open { max-height: 620px; padding-block: 20px; opacity: 1; }
  .mobile-menu a { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding: 12px 0; font-weight: 750; }
.mobile-menu__label { margin: 0 0 10px; color: var(--blue-dark); font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.mobile-menu__label--additional { margin-top: 16px; }
.mobile-submenu { display: grid; border-left: 2px solid var(--blue); padding-left: 14px; }
.mobile-submenu a { color: var(--muted); font-size: .94rem; }
.mobile-menu a.is-active { color: var(--blue-dark); }
.mobile-menu > a.is-active { border-left: 3px solid var(--yellow); padding-left: 11px; }
.mobile-submenu a.is-active { color: var(--blue-dark); font-weight: 800; }
  .hero h1 { font-size: clamp(4rem,12vw,6rem); }
  .hero { min-height: 980px; }
  .hero-content { grid-template-columns: 1fr; gap: 35px; margin-top: 190px; }
  .hero-copy { max-width: 680px; }
  .hero-planner { width: min(520px,100%); }
  .scroll-cue { display: none; }
  .trust-strip { grid-template-columns: repeat(2,1fr); }
  .section-grid--intro, .listing-intro, .about-intro, .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .journey-bands { grid-template-columns: 1fr; }
  .journey-band { min-height: 520px; }
  .local-section, .planning-section, .detail-layout, .language-section { grid-template-columns: 1fr; }
  .booking-card { position: static; width: min(720px,100%); }
  .local-badge { right: 20px; }
  .planning-section { gap: 45px; }
  .service-directory { padding: 80px 32px; }
  .values-section { grid-template-columns: repeat(2,1fr); }
  .activity-categories, .property-services { grid-template-columns: repeat(2,1fr); }
  .property-intro, .luxury-intro { grid-template-columns: 1fr; gap: 35px; }
  .values-section article { min-height: 300px; }
  .guide-card { grid-template-columns: 300px 1fr; gap: 30px; }
  .footer-cta { align-items: start; flex-direction: column; }
}

@media (max-width: 680px) {
  html { font-size: 16px; }
  body { font-size: 1rem; line-height: 1.65; }
  .utility-inner { width: calc(100% - 32px); }
  .utility-group { gap: 8px; font-size: .75rem; }
  .utility-group span { display: none; }
  .hero { min-height: 1100px; }
  .hero-content { width: calc(100% - 40px); margin-top: 150px; margin-bottom: 120px; }
  .hero h1 { font-size: clamp(3.5rem,17vw,5.2rem); }
  .hero-lede { font-size: 1.12rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-footer { right: 20px; bottom: 28px; left: 20px; }
  .hero-planner { padding: 22px 18px; }
  .hero-controls { display: none; }
  .hero-dots button { width: 25px; }
  .trust-strip div { min-height: 88px; padding: 16px; }
  .trust-strip strong { font-size: 1.3rem; }
  .trust-strip span { font-size: .74rem; }
  .section { padding: 72px 20px; }
  .section-heading-row { align-items: start; flex-direction: column; margin-bottom: 32px; }
  .experience-grid, .experience-grid--three { grid-template-columns: 1fr; }
  .experience-card__image { height: 260px; }
  .journey-band { min-height: 500px; padding: 36px 20px; }
  .local-section { gap: 45px; }
  .local-visual, .local-visual > img { min-height: 460px; height: 460px; }
  .local-badge { right: 14px; bottom: 14px; width: 210px; min-height: 105px; }
  .planning-section { padding: 72px 20px; }
  .service-directory { padding: 72px 20px; }
  .service-directory__grid { grid-template-columns: 1fr; }
  .form-row, .form-row--three { grid-template-columns: 1fr; }
  .form-submit-row { align-items: stretch; flex-direction: column; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-grid > a { min-height: 230px; }
  .inner-hero { min-height: 650px; padding: 170px 20px 50px; }
  .detail-hero { min-height: 840px; padding: 165px 20px 45px; }
  .detail-hero__media img { object-position: center center; }
  .inner-hero__content h1, .detail-hero h1 { font-size: clamp(3rem,14vw,4.6rem); }
  .detail-hero__summary { font-size: 1.02rem; }
  .detail-hero__bottom { align-items: stretch; flex-direction: column; gap: 18px; margin-top: 25px; }
  .detail-hero__bottom .button { width: 100%; }
  .detail-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .detail-facts span { min-width: 0; padding: 11px 12px; }
  .detail-facts span:last-child { grid-column: 1 / -1; }
  .detail-overview { padding: 27px 20px; }
  .detail-lede { font-size: 1.3rem; }
  .include-grid { grid-template-columns: 1fr; gap: 0; }
  .booking-card { padding: 24px 20px; }
  .booking-form-row { grid-template-columns: 1fr; }
  .values-section, .contact-steps { grid-template-columns: 1fr; }
  .activity-categories, .property-services { grid-template-columns: 1fr; }
  .activity-categories > a { min-height: 280px; }
  .property-hero { min-height: 600px; padding: 170px 20px 60px; }
  .values-section article, .contact-steps > div { min-height: 230px; padding: 35px 20px; }
  .values-section h3, .contact-steps h3 { margin-top: 35px; }
  .language-visual img { height: 400px; }
  .contact-hero, .guide-hero { padding: 180px 20px 70px; }
  .contact-form-card { padding: 25px 20px; }
  .contact-details dl div { grid-template-columns: 1fr; gap: 4px; }
  .guide-card { grid-template-columns: 1fr; }
  .guide-card__image { height: 230px; }
  .article-page { padding-top: 115px; }
  .article-cover { width: calc(100% - 30px); height: 60vw; border-radius: 12px; }
  .article-body { margin-block: 45px 75px; }
  .article-body aside { padding: 26px 20px; }
  .footer-cta { padding: 64px 20px; }
  .footer-main { padding: 65px 20px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; padding: 20px; }
  .whatsapp-button { width: 54px; padding: 0; justify-content: center; }
  .whatsapp-button span { display: none; }
  .admin-app { padding: 24px 14px 70px; }
  .admin-top { align-items: start; flex-direction: column; }
  .admin-user { flex-wrap: wrap; }
  .admin-tabs { overflow-x: auto; }
  .admin-form, .admin-list, .admin-enquiries { padding: 20px 15px; }
  .admin-item { grid-template-columns: 70px 1fr; }
  .admin-item > img { width: 70px; height: 60px; }
  .admin-item > div:last-child { grid-column: 2; grid-template-columns: auto auto; justify-content: start; }
  .image-uploader { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Core PHP application additions */
.hero-copy-slide { display: none; animation: heroCopyIn .65s ease both; }
.hero-copy-slide.is-active { display: block; }
@keyframes heroCopyIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.site-flash { position: fixed; z-index: 120; top: 140px; right: 24px; max-width: 430px; border-radius: 10px; padding: 14px 18px; background: white; color: var(--ink); box-shadow: var(--shadow); font-weight: 750; }
.site-flash--error { border-left: 5px solid #c24848; }
.site-flash--success { border-left: 5px solid #24a861; }
.floating-whatsapp { position: fixed; z-index: 70; right: 22px; bottom: 22px; display: flex; min-height: 50px; align-items: center; justify-content: center; border-radius: 999px; padding: 0 20px; background: #25d366; color: white; box-shadow: 0 14px 35px rgba(5,47,56,.24); font-size: .84rem; font-weight: 800; }
.not-found { display: grid; min-height: 760px; place-content: center; padding: 190px 24px 90px; background: radial-gradient(circle at 75% 30%,rgba(41,172,227,.38),transparent 34%),var(--deepest); color: white; text-align: center; }
.not-found h1 { max-width: 900px; margin: 0 auto 25px; color: white; }
.not-found > p:not(.eyebrow) { max-width: 650px; margin: 0 auto 28px; color: rgba(255,255,255,.72); }
.not-found > div { display: flex; justify-content: center; gap: 12px; }
.admin-login-logo, .installer-logo { width: 260px; margin: 0 auto 28px; }
.admin-login-form { margin-top: 25px; padding: 0; box-shadow: none; text-align: left; }
.admin-error { border-left: 4px solid #d44; border-radius: 6px; padding: 11px 14px; background: #fff0f0; color: #9c2929; font-weight: 700; }
.admin-back-link { display: inline-block; margin-top: 22px; color: var(--blue-dark); font-size: .88rem; font-weight: 800; }
.admin-notice--error { background: #fff0f0; color: #9c2929; }
.admin-settings { width: min(900px,100%); }
.admin-form small { color: var(--muted); }
.installer-page { min-height: 100vh; padding: 50px 20px; background: linear-gradient(145deg,var(--deepest),#0b6578); }
.installer-card { width: min(850px,100%); margin: auto; border-radius: 22px; padding: clamp(28px,5vw,55px); background: white; box-shadow: 0 30px 90px rgba(0,0,0,.24); }
.installer-card > h1 { margin: 0 0 18px; font-size: clamp(2.5rem,6vw,4.6rem); }
.installer-card > p { max-width: 690px; }
.installer-form { display: grid; gap: 24px; margin-top: 34px; }
.installer-form fieldset { display: grid; gap: 16px; border: 1px solid var(--line); border-radius: 14px; padding: 24px; }
.installer-form legend { padding: 0 10px; color: var(--ink); font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.installer-form label { display: grid; gap: 7px; }
.installer-form label > span { color: var(--ink); font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.installer-form input { width: 100%; border: 1px solid #ccd8da; border-radius: 8px; outline: 0; padding: 12px 13px; }
.installer-form input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(41,172,227,.1); }
.installer-form small { color: var(--muted); }
.installer-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.installer-security { margin-top: 32px; border-radius: 9px; padding: 15px; background: #fff8d8; color: #65500a; }
@media (max-width:680px) { .floating-whatsapp { right: 14px; bottom: 14px; padding: 0 15px; } .not-found > div { align-items: stretch; flex-direction: column; } .installer-card { padding: 28px 18px; } .installer-form fieldset { padding: 20px 14px; } }

/* Dynamic property catalogue */
.property-catalogue { padding-top: 95px; }
.property-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 26px; }
.property-card { min-width: 0; overflow: hidden; border: 1px solid #dce7e9; border-radius: 18px; background: white; box-shadow: 0 12px 38px rgba(5,50,59,.07); transition: transform .28s ease,box-shadow .28s ease; }
.property-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.property-card__media { position: relative; display: block; height: 300px; overflow: hidden; background: #dfe8e9; }
.property-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.property-card:hover .property-card__media img { transform: scale(1.045); }
.property-card__badges { position: absolute; top: 16px; right: 16px; left: 16px; display: flex; justify-content: space-between; gap: 10px; }
.property-card__badges span { border-radius: 999px; padding: 8px 12px; background: rgba(5,44,52,.88); color: white; font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; backdrop-filter: blur(8px); }
.property-card__badges .property-card__status--available { background: #178754; }
.property-card__badges .property-card__status--under_offer { background: #c48b00; }
.property-card__badges .property-card__status--sold,.property-card__badges .property-card__status--rented { background: #a44242; }
.property-card__body { padding: 27px; }
.property-card__location { margin: 0; color: var(--blue-dark); font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.property-card h2 { min-height: 68px; margin: 12px 0; font-size: 1.55rem; }
.property-card h2 a:hover { color: var(--blue-dark); }
.property-card__body > p:not(.property-card__location) { min-height: 78px; margin: 0; color: var(--muted); font-size: .94rem; }
.property-card__facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin: 22px 0; background: var(--line); }
.property-card__facts span { display: grid; align-content: start; gap: 3px; padding: 12px 9px; background: #f6f9f9; color: var(--ink); font-size: .77rem; font-weight: 750; }
.property-card__facts small { color: var(--muted); font-size: .65rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.property-card__footer { display: flex; align-items: end; justify-content: space-between; gap: 15px; border-top: 1px solid var(--line); padding-top: 18px; }
.property-card__footer > div { display: grid; }
.property-card__footer strong { color: var(--ink); font-family: var(--font-display); font-size: 1.08rem; }
.property-card__footer small { color: var(--muted); font-size: .74rem; }
.property-card__footer > a { color: var(--blue-dark); font-size: .82rem; font-weight: 800; }
.property-empty { border: 1px solid var(--line); border-radius: 18px; padding: 65px; background: white; text-align: center; }
.property-detail-hero { position: relative; display: flex; min-height: clamp(720px,86svh,900px); align-items: end; overflow: hidden; padding: 185px max(32px,calc((100% - 1240px)/2)) 70px; background: var(--deepest); color: white; }
.property-detail-hero__media { position: absolute; inset: 0; background: var(--deepest); }
.property-detail-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: opacity .35s ease,transform .5s ease; }
.property-detail-hero__media.is-changing img { opacity: .72; transform: scale(1.012); }
.property-detail-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(2,30,36,.93),rgba(2,30,36,.58) 48%,rgba(2,30,36,.14)),linear-gradient(0deg,rgba(2,30,36,.88),transparent 60%); }
.property-detail-hero__content { position: relative; width: min(950px,100%); }
.property-detail-hero nav { display: flex; gap: 10px; margin-bottom: 25px; color: rgba(255,255,255,.76); font-size: .82rem; font-weight: 700; }
.property-detail-badges { display: flex; gap: 9px; }
.property-detail-badges span { border: 1px solid rgba(255,255,255,.25); border-radius: 999px; padding: 8px 13px; background: rgba(5,37,44,.55); color: var(--yellow); font-size: .73rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.property-detail-hero h1 { max-width: 1000px; margin: 18px 0 20px; color: white; font-size: clamp(3.1rem,5.8vw,6.3rem); }
.property-detail-hero__content > p { max-width: 720px; color: rgba(255,255,255,.84); font-size: 1.12rem; }
.property-detail-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.property-detail-price strong { color: var(--yellow); font-family: var(--font-display); font-size: 2rem; }
.property-detail-price span { color: white; font-size: 1rem; font-weight: 700; }
.property-gallery-strip { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; padding: 14px max(20px,calc((100% - 1240px)/2)); background: var(--deepest); }
.property-gallery-strip button { height: 135px; overflow: hidden; border: 3px solid transparent; border-radius: 10px; padding: 0; background: transparent; cursor: pointer; opacity: .72; transition: opacity .2s ease,border-color .2s ease; }
.property-gallery-strip button.is-active,.property-gallery-strip button:hover { border-color: var(--yellow); opacity: 1; }
.property-gallery-strip img { width: 100%; height: 100%; object-fit: cover; }
.property-detail-layout { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(390px,.8fr); align-items: start; gap: 80px; }
.property-detail-intro { border-left: 5px solid var(--yellow); padding: 10px 0 10px 34px; }
.property-detail-intro h2 { margin-bottom: 24px; font-size: clamp(2.2rem,3.5vw,3.5rem); }
.property-detail-intro > p:last-child { font-size: 1.08rem; line-height: 1.85; }
.property-spec-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; margin-top: 55px; background: var(--line); }
.property-spec-grid div { display: grid; min-height: 105px; align-content: center; gap: 7px; padding: 22px; background: var(--soft); }
.property-spec-grid small { color: var(--blue-dark); font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.property-spec-grid strong { color: var(--ink); font-size: 1rem; }
.property-content-block { margin-top: 70px; }
.property-content-block h2,.property-ownership h2 { font-size: 2.3rem; }
.property-ownership { margin-top: 65px; border-radius: 16px; padding: 35px; background: var(--deep); color: white; }
.property-ownership h2 { color: white; }
.property-ownership > p:last-child { color: rgba(255,255,255,.76); }
.admin-gallery-preview { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.admin-gallery-preview article { position: relative; overflow: hidden; border-radius: 9px; background: var(--soft); }
.admin-gallery-preview img { width: 100%; height: 120px; object-fit: cover; }
.admin-gallery-preview form { position: absolute; top: 6px; right: 6px; }
.admin-gallery-preview button { border: 0; border-radius: 999px; padding: 6px 9px; background: rgba(140,25,25,.9); color: white; font-size: .7rem; font-weight: 800; cursor: pointer; }
@media(max-width:1100px){.property-grid{grid-template-columns:repeat(2,1fr)}.property-detail-layout{grid-template-columns:1fr}.property-enquiry-card{position:static}.property-gallery-strip{grid-template-columns:repeat(4,1fr)}}
@media(max-width:680px){.property-grid{grid-template-columns:1fr}.property-card__media{height:270px}.property-card__facts{grid-template-columns:1fr}.property-card__facts span{min-height:65px}.property-detail-hero{min-height:820px;padding:165px 20px 45px}.property-detail-hero h1{font-size:clamp(3rem,13vw,4.5rem)}.property-gallery-strip{grid-template-columns:repeat(3,1fr);padding:10px}.property-gallery-strip button{height:90px}.property-spec-grid{grid-template-columns:1fr}.property-detail-intro{padding-left:22px}.property-empty{padding:45px 20px}.admin-gallery-preview{grid-template-columns:repeat(2,1fr)}}
