:root {
  --bg: #0b0b0b;
  --bg-soft: #121212;
  --panel: #171717;
  --panel-soft: #1d1d1d;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f3efe8;
  --muted: #b7b0a2;
  --gold: #c8a66a;
  --gold-light: #e9d8b4;
  --white-soft: #f8f5ef;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(200, 166, 106, 0.14), transparent 24%),
    linear-gradient(180deg, #14110d 0%, #0b0b0b 28%, #090909 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.28;
  mask-image: linear-gradient(to bottom, black, transparent);
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar p,
.topbar a,
.section-heading p,
.section-copy p,
.feature-card p,
.service-card p,
.pick-card p,
.testimonial-card p,
.contact-card span,
.mini-stat span,
.hero-text,
.hero-metrics span,
.media-badge span,
.partner-strip span,
.footer-inner p {
  color: var(--muted);
  line-height: 1.65;
}

.topbar p,
.topbar a {
  font-size: 0.83rem;
}

.topbar-links {
  display: flex;
  gap: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 11, 11, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  gap: 28px;
  font-size: 0.94rem;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.topbar a:hover,
.text-link:hover {
  color: var(--white-soft);
}

.button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button-with-icon {
  gap: 10px;
}

.button-label {
  display: inline-flex;
  align-items: center;
}

.button-icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-icon svg {
  width: 100%;
  height: 100%;
}

.instagram-icon {
  width: 26px;
  height: 26px;
  padding: 5px;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 28%, #d62976 62%, #962fbf 82%, #4f5bd5 100%);
  box-shadow: 0 10px 20px rgba(214, 41, 118, 0.22);
}
.whatsapp-icon {
  /* Box model & sizing (matches Instagram 36px total visual size) */
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;  
  height: 36px;
  padding: 5px;
  
  /* Visual styling */
  border-radius: 9px;
  color: #ffffff;
  /* WhatsApp signature brand gradient */
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  /* Matching soft drop shadow using WhatsApp brand green */
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
}

/* Forces SVG to fill the available space inside the padding */
.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(200, 166, 106, 0.45);
}

.button-primary {
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  color: #120f0b;
  font-weight: 700;
}

.button-outline,
.button-muted {
  background: rgba(255, 255, 255, 0.04);
}

.button-full,
.button-search {
  width: 100%;
}

.hero {
  padding: 56px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.3rem, 7vw, 5.7rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  max-width: 13ch;
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  margin-bottom: 10px;
}

.hero-text {
  max-width: 60ch;
  margin: 24px 0 0;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-metrics {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-metrics div {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.hero-metrics strong,
.mini-stat strong,
.stats-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: var(--white-soft);
}

.hero-photo-card,
.enquiry-panel,
.about-card,
.feature-card,
.service-card,
.pick-card,
.testimonial-card,
.contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-photo-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 620px);
  margin-left: auto;
  padding: 14px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at top, rgba(200, 166, 106, 0.12), transparent 58%);
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 10% 4% 12% 20%;
  background: radial-gradient(circle, rgba(200, 166, 106, 0.18), transparent 70%);
  filter: blur(34px);
  pointer-events: none;
}

.hero-photo-card > img {
  height: 620px;
  object-fit: cover;
  object-position: center top;
}

.hero-gallery {
  height: auto;
  min-height: 760px;
  aspect-ratio: 4 / 5;
  padding: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, #121212, #0d0d0d);
}

.hero-photo-card .pick-gallery-track {
  inset: 0;
}

.hero-photo-card .pick-gallery img {
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  object-fit: cover;
  object-position: center top;
  transition: opacity 700ms ease, transform 700ms ease;
  transform: scale(1.03);
}

.hero-photo-card .pick-gallery img.is-active {
  transform: scale(1);
}

.hero-photo-card .gallery-control {
  width: 46px;
  height: 46px;
  border-color: rgba(200, 166, 106, 0.22);
  background: rgba(8, 8, 8, 0.74);
  z-index: 3;
}

.hero-photo-card .gallery-dots {
  bottom: 130px;
  z-index: 3;
}

.media-badge {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 8, 0.74);
  backdrop-filter: blur(14px);
  z-index: 4;
}

.media-badge img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.media-badge strong,
.pick-content .price,
.text-link {
  color: var(--gold-light);
}

.enquiry-wrap {
  position: relative;
  margin-top: 34px;
}

.enquiry-panel {
  padding: 24px;
  border-radius: 28px;
}

.enquiry-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.tab {
  border: 0;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.tab.is-active {
  color: #14110b;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
}

.enquiry-form,
.contact-form {
  display: grid;
  gap: 16px;
}

.enquiry-form {
  grid-template-columns: repeat(2, 1fr);
  align-items: end;
}

.enquiry-form label,
.contact-form label {
  display: block;
}

.enquiry-form span,
.contact-form span {
  display: block;
  margin-bottom: 10px;
  color: var(--white-soft);
  font-size: 0.88rem;
}

select,
input {
  width: 100%;
  height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0 16px;
}

option {
  color: #101010;
}

.partners {
  padding: 56px 0 0;
}

.partners-inner {
  padding: 18px 0 0;
}

.partners-inner > p {
  margin: 0 0 12px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.partner-strip a {
  min-height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white-soft);
  padding: 0 18px;
  text-align: center;
}

.section {
  padding: 96px 0 0;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.section-copy > p:last-of-type,
.section-heading > p,
.section-heading p:last-child {
  max-width: 60ch;
}

.about-card {
  border-radius: var(--radius-xl);
  padding: 26px;
  display: grid;
  gap: 16px;
}

.mini-stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.muted-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.feature-grid,
.picks-grid,
.testimonials-grid {
  display: grid;
  gap: 22px;
}

.feature-grid,
.picks-grid,
.testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.testimonial-card {
  border-radius: 24px;
  padding: 26px;
}

.pick-card {
  overflow: hidden;
  border-radius: 26px;
}

.pick-card img {
  height: 270px;
  object-fit: cover;
}

.services-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

.service-spotlight,
.service-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-spotlight {
  overflow: hidden;
  border-radius: 30px;
}

.service-spotlight-media {
  position: relative;
  min-height: 360px;
}

.service-spotlight-media img {
  height: 360px;
  object-fit: cover;
}

.service-spotlight-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(8, 8, 8, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.service-spotlight-badge span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-spotlight-badge strong {
  color: var(--white-soft);
  line-height: 1.4;
}

.service-spotlight-copy {
  padding: 26px;
}

.service-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-points li {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white-soft);
}

.services-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-panel {
  border-radius: 26px;
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(200, 166, 106, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(200, 166, 106, 0.14), rgba(255, 255, 255, 0.035) 32%, rgba(255, 255, 255, 0.02));
}

.service-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.service-panel-head span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(200, 166, 106, 0.28);
  background: rgba(200, 166, 106, 0.08);
  font-weight: 700;
}

.service-panel img {
  height: 190px;
  border-radius: 18px;
  object-fit: cover;
  margin-bottom: 18px;
}

.pick-gallery {
  position: relative;
  height: 304px;
  overflow: hidden;
  padding: 8px 8px 0;
  background: rgba(255, 255, 255, 0.02);
  touch-action: pan-y;
}

.pick-gallery-track {
  position: absolute;
  inset: 8px 8px 0;
}

.pick-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 18px 18px 0 0;
  background: #111;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 900ms ease;
}

.pick-gallery img.is-active {
  opacity: 1;
}

.gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 8, 8, 0.62);
  color: var(--white-soft);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.gallery-prev {
  left: 18px;
}

.gallery-next {
  right: 18px;
}

.gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.gallery-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.gallery-dot.is-active {
  background: var(--gold-light);
}

.service-card div,
.pick-content {
  padding: 22px;
}

.stats-band {
  padding: 90px 0 0;
}

.stats-grid {
  padding: 26px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-section {
  padding-bottom: 96px;
}

.contact-section .contact-grid {
  align-items: start;
}

.inventory-page {
  padding-bottom: 96px;
}

.inventory-hero {
  padding: 58px 0 0;
}

.inventory-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.82fr);
  gap: 26px;
  align-items: center;
}

.inventory-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.95rem, 5vw, 4.8rem);
}

.inventory-copy .hero-text {
  max-width: 58ch;
  color: var(--muted);
}

.inventory-copy-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.inventory-copy-points span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white-soft);
  font-size: 0.88rem;
}

.inventory-meta {
  max-width: 460px;
  margin-left: auto;
}

.inventory-meta,
.inventory-stat-grid {
  height: 100%;
}

.inventory-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.inventory-meta-card {
  height: 100%;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inventory-meta-card strong {
  font-size: 1.18rem;
  line-height: 1.18;
}

.inventory-meta-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.inventory-meta-card-wide {
  grid-column: 1 / -1;
}

.inventory-meta-label {
  display: block;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.inventory-panel {
  margin-top: 0;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding: 26px;
  border-radius: 30px;
}

.inventory-panel-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.inventory-panel-copy h3 {
  margin-bottom: 0;
}

.inventory-panel-copy > p {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
}

.inventory-form {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.inventory-results-head {
  margin: 28px 0 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.inventory-results-head h2 {
  max-width: none;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.inventory-results-count {
  margin: 0;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white-soft);
  font-size: 0.92rem;
  white-space: nowrap;
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.inventory-card {
  overflow: clip;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  content-visibility: auto;
  contain-intrinsic-size: 520px;
}

.inventory-card-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #171717;
}

.inventory-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

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

.inventory-card-brand {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gold-light);
  font-size: 0.78rem;
  backdrop-filter: blur(10px);
}

.inventory-card-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inventory-card-body h3 {
  margin: 0;
}

.inventory-price {
  margin: 0;
  color: var(--gold-light);
  font-size: 1.02rem;
  font-weight: 700;
}

.inventory-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.inventory-spec {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.inventory-spec span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.inventory-spec strong {
  display: block;
  margin-top: 6px;
  color: var(--white-soft);
  font-size: 0.95rem;
  line-height: 1.35;
}

.inventory-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.inventory-card-foot span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.inventory-pagination {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.inventory-pagination p {
  margin: 0;
  color: var(--white-soft);
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.inventory-page-button {
  min-width: 138px;
  gap: 10px;
  color: var(--white-soft);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
}

.inventory-page-button .page-button-icon {
  color: var(--gold-light);
  font-size: 1rem;
  line-height: 1;
}

.inventory-page-button:disabled {
  opacity: 1;
  cursor: not-allowed;
  transform: none;
  color: rgba(248, 245, 239, 0.6);
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.08);
}

.inventory-page-button:disabled .page-button-icon {
  color: rgba(233, 216, 180, 0.5);
}

.inventory-empty {
  padding: 32px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-points span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white-soft);
}

.contact-info-card,
.contact-map-card {
  margin-top: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(200, 166, 106, 0.14), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.contact-info-card {
  padding: 24px;
}

.contact-info-item + .contact-info-item {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-info-item p,
.contact-info-item a {
  margin: 0;
  color: var(--white-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-map-card {
  overflow: hidden;
}

.contact-map-card iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.contact-card {
  border-radius: var(--radius-xl);
  padding: 26px;
}

.contact-card-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contact-card-note strong {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-card-note a {
  color: var(--gold-light);
  font-weight: 700;
}

.footer-inner {
  min-height: 88px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .inventory-hero-grid,
  .about-grid,
  .contact-grid,
  .feature-grid,
  .services-showcase,
  .picks-grid,
  .testimonials-grid,
  .stats-grid,
  .partner-strip,
  .hero-metrics,
  .enquiry-form,
  .inventory-form,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .inventory-stat-grid {
    grid-template-columns: 1fr;
  }

  .inventory-meta-card-wide {
    grid-column: auto;
  }

  .inventory-meta {
    max-width: none;
    margin-left: 0;
  }

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

  .section-heading,
  .topbar-inner,
  .nav-shell {
    display: block;
  }

  .site-nav {
    margin: 18px 0;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-photo-card > img {
    height: 500px;
  }

  .hero-gallery {
    min-height: 680px;
  }

  .enquiry-wrap {
    margin-top: 28px;
  }

  .hero-media::before {
    inset: 12% 10% 14% 12%;
  }

  .footer-inner {
    padding: 22px 0;
  }

  .inventory-results-head {
    display: block;
  }

  .inventory-results-count {
    display: inline-flex;
    margin-top: 14px;
  }

  .inventory-panel-copy {
    display: block;
  }

  .inventory-panel-copy > p {
    max-width: none;
    margin-top: 10px;
  }

  .services-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .topbar {
    display: none;
  }

  .site-header {
    position: static;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  h2 {
    max-width: none;
  }

  .hero {
    padding-top: 26px;
  }

  .hero-photo-card > img {
    height: 360px;
  }

  .hero-gallery {
    min-height: 520px;
  }

  .media-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px;
  }

  .hero-photo-card .gallery-dots {
    bottom: 102px;
  }

  .hero-photo-card {
    width: 100%;
    padding: 10px;
    border-radius: 28px;
  }

  .hero-photo-card .pick-gallery img,
  .hero-gallery {
    border-radius: 20px;
  }

  .enquiry-panel,
  .about-card,
  .contact-card,
  .feature-card,
  .testimonial-card {
    border-radius: 22px;
    padding: 20px;
  }

  .service-card img,
  .pick-card img {
    height: 220px;
  }

  .inventory-card-media {
    aspect-ratio: 4 / 3;
  }

  .inventory-grid {
    grid-template-columns: 1fr;
  }

  .inventory-specs {
    grid-template-columns: 1fr;
  }

  .inventory-card-foot {
    display: block;
  }

  .inventory-card-foot .text-link {
    display: inline-block;
    margin-top: 10px;
  }

  .inventory-pagination {
    justify-content: space-between;
  }

  .inventory-page-button {
    min-width: 0;
    flex: 1;
  }

  .service-spotlight-media img {
    height: 280px;
  }

  .service-panel img {
    height: 220px;
  }

  .contact-info-card,
  .contact-map-card {
    border-radius: 22px;
  }

  .contact-map-card iframe {
    height: 280px;
  }

  .contact-card-note {
    display: block;
  }

  .contact-card-note a {
    display: inline-block;
    margin-top: 10px;
  }

  .pick-gallery {
    height: 250px;
  }

  .gallery-control {
    width: 34px;
    height: 34px;
  }

  .section {
    padding-top: 76px;
  }
}
