@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Open+Sans:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap");

:root {
  --font-inter: Inter, sans-serif;
  --font-open-sans: "Open Sans", Arial, sans-serif;
  --font-roboto: Roboto, sans-serif;
  --night: #100d08;
  --navy: #20180e;
  --gold: #b08d57;
  --gold-light: #d5ae6d;
  --ice: #e6c98f;
  --cream: #f1eadc;
  --paper: #faf6ed;
  --ink: #1d160d;
  --muted: #7d7468;
  --line: rgba(45, 35, 22, 0.15);
  --desktop-header-height: 168px;
  --tablet-header-height: 86px;
  --mobile-header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font-family: var(--font-open-sans);
}

body.lightbox-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--desktop-header-height);
  padding: 16px clamp(35px, 5vw, 85px) 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--ink);
  border-bottom: 1px solid rgba(45, 35, 22, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
}

.brand strong {
  display: block;
  margin: 0;
  font-family: var(--font-inter);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.23em;
}

.brand span {
  display: block;
  margin: 0;
  color: #8a7552;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.header-side-logo {
  position: absolute;
  top: 50%;
  left: clamp(25px, 4vw, 70px);
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  line-height: 0;
}

.header-side-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.site-header nav {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-roboto);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header nav a {
  position: relative;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
  border: 1px solid rgba(176, 141, 87, 0.45);
  border-radius: 999px;
  background: rgba(176, 141, 87, 0.06);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.site-header nav a i {
  color: var(--gold);
  font-size: 15px;
  line-height: 1;
  transition: color 0.3s ease;
}

.site-header nav a:hover {
  color: #fff;
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 8px 22px rgba(176, 141, 87, 0.22);
  transform: translateY(-2px);
}

.site-header nav a:hover i {
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--desktop-header-height);
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

.hero-slideshow {
  position: absolute;
  inset: var(--desktop-header-height) 0 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  transition:
    opacity 1.4s ease,
    transform 7s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: var(--desktop-header-height) 0 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 6, 3, 0.22), rgba(8, 6, 3, 0.05), rgba(8, 6, 3, 0.18)),
    linear-gradient(0deg, rgba(8, 6, 3, 0.42), transparent 55%, rgba(8, 6, 3, 0.05));
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: calc(100svh - var(--desktop-header-height));
  padding: 80px 24px 105px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.eyebrow,
.section-kicker {
  position: relative;
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--font-roboto);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  color: #f0e4ca;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  position: relative;
  max-width: 1050px;
  margin: 0;
  font-family: var(--font-inter);
  font-size: clamp(45px, 5.8vw, 82px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-shadow: 0 5px 28px rgba(0, 0, 0, 0.38);
  animation: rise 0.9s ease both;
}

.hero h1 em,
.band-content h2 em,
.contact-section h2 em {
  color: transparent;
  font-style: normal;
  font-weight: 300;
  background: linear-gradient(110deg, #8f6b36 0%, #e5c98f 45%, #b08d57 72%, #f0d9aa 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy {
  position: relative;
  width: min(620px, 100%);
  margin: 24px 0 34px;
  color: #f1ece2;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
  animation: rise 1s 0.1s ease both;
}

.hero-signature {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #ddd3c3;
  font-size: 7px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-signature i {
  width: 3px;
  height: 3px;
  background: var(--gold);
  transform: rotate(45deg);
}

.slide-arrow {
  position: absolute;
  top: 55%;
  z-index: 5;
  width: 46px;
  height: 46px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(20, 15, 8, 0.25);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: 0.3s ease;
}

.slide-arrow:hover {
  border-color: var(--gold);
  background: var(--gold);
  transform: scale(1.08);
}

.slide-previous {
  left: 28px;
}

.slide-next {
  right: 28px;
}

.slide-dots {
  position: absolute;
  right: 34px;
  bottom: 27px;
  z-index: 5;
  display: flex;
  gap: 8px;
}

.slide-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: 0.3s ease;
}

.slide-dot.active {
  width: 25px;
  border-color: var(--gold-light);
  border-radius: 10px;
  background: var(--gold-light);
}

/* Marquee */
.marquee {
  padding: 14px 0;
  overflow: hidden;
  color: #181007;
  white-space: nowrap;
  border-top: 1px solid #d8bc88;
  border-bottom: 1px solid #6f5129;
  background: linear-gradient(90deg, #7f5f31, #c7a76e 45%, #92703d);
}

.marquee div {
  width: max-content;
  font-family: var(--font-inter);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  animation: marquee 28s linear infinite;
}

.marquee span {
  margin: 0 34px;
  font-size: 8px;
}

/* About */
.statement {
  position: relative;
  padding: 65px clamp(28px, 7vw, 120px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 35px;
  overflow: hidden;
  background: var(--paper);
}

.statement h2,
.services-intro h2,
.contact-section h2 {
  margin: 0;
  font-family: var(--font-inter);
  font-size: clamp(50px, 5.7vw, 82px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.statement h2 span,
.services-intro h2 span {
  color: #8c7c66;
  font-style: normal;
  font-weight: 300;
}

.statement-copy {
  position: relative;
  z-index: 2;
  padding-top: 0;
}

.statement-copy > p {
  margin: 0 0 14px;
  color: #6f6559;
  font-size: 15px;
  line-height: 1.9;
}

.statement-copy > p:first-child {
  color: var(--ink);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.65;
}

.value-row {
  margin-top: 25px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  border-top: 1px solid var(--line);
}

.value-row span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.value-row span::before {
  content: "◆";
  margin-right: 9px;
  color: var(--gold);
  font-size: 6px;
}

.statement-mark {
  position: absolute;
  right: -3vw;
  bottom: -14vw;
  color: rgba(7, 21, 28, 0.022);
  font-family: var(--font-inter);
  font-size: 38vw;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

/* Construction feature */
.construction-band {
  position: relative;
  min-height: 790px;
  display: block;
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

.construction-band .band-image {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background: url("../images/landscaping-feature.jpg") center / cover no-repeat;
}

.construction-band .band-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 6, 3, 0) 0%,
    rgba(8, 6, 3, 0) 48%,
    rgba(8, 6, 3, 0.18) 55%,
    rgba(8, 6, 3, 0.68) 72%,
    rgba(8, 6, 3, 0.9) 100%
  );
}

.construction-band .band-image::after {
  content: "CRAFTED FOR GENERATIONS";
  position: absolute;
  bottom: 40px;
  left: 42px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 8px;
  letter-spacing: 0.35em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.construction-band .band-content {
  position: relative;
  z-index: 2;
  width: 52%;
  min-height: 790px;
  margin-left: auto;
  padding: 110px clamp(45px, 7vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.construction-band .section-kicker {
  color: #e3bd78;
}

.band-content h2 {
  position: relative;
  margin: 0 0 30px;
  color: #fff;
  font-family: var(--font-inter);
  font-size: clamp(52px, 5.3vw, 80px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.35);
}

.band-content > p:not(.section-kicker) {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.9;
}

.band-content a {
  width: max-content;
  margin-top: 34px;
  padding: 16px 24px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(10, 7, 3, 0.2);
  font-family: var(--font-roboto);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.band-content a span {
  margin-left: 16px;
  color: var(--ice);
}

.band-content a:hover {
  color: var(--night);
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.large-number {
  display: none;
}

/* Management */
.services-section {
  padding: 145px clamp(28px, 7vw, 120px) 60px;
  background: var(--cream);
}

.services-intro {
  position: relative;
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 28px;
}

.management-heading {
  position: relative;
  z-index: 2;
  padding-right: 10px;
}

.management-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(58px, 5.7vw, 96px);
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.management-heading h2 span {
  display: block;
  margin-top: 18px;
  color: #988a74;
  font-weight: 300;
}

.management-line,
.management-shade {
  display: none;
}

.management-visual {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.management-visual img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(47, 35, 20, 0.14);
}

.management-index {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(16, 13, 8, 0.58);
  backdrop-filter: blur(7px);
  font-family: var(--font-inter);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.management-caption {
  position: static;
  margin: 24px 8px 0;
  padding: 24px 0 0;
  color: var(--ink);
  border-top: 1px solid rgba(176, 141, 87, 0.45);
  background: transparent;
}

.management-caption span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.management-caption p {
  max-width: 620px;
  margin: 0;
  color: #6f6559;
  font-size: 14px;
  line-height: 1.8;
}

.management-heading .management-caption {
  max-width: 570px;
  margin: 38px 0 0;
  padding: 28px 0 0;
  border-top-color: rgba(176, 141, 87, 0.38);
}

.management-heading .management-caption span {
  margin-bottom: 14px;
}

.management-heading .management-caption p {
  font-size: 15px;
  line-height: 1.85;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-card {
  position: relative;
  padding: 34px 12px;
  display: grid;
  grid-template-columns: 110px minmax(260px, 1fr) minmax(300px, 1fr) 40px;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  transition: 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 100% 0 0;
  background: var(--navy);
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover::before {
  right: 0;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  padding-left: 28px;
  color: #fff;
}

.service-card-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.service-number {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 0.12em;
}

.service-icon {
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.service-card:hover .service-icon {
  color: var(--gold-light);
}

.service-card h3 {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.service-card p {
  max-width: 470px;
  margin: 0;
  color: #756b5f;
  font-size: 12px;
  line-height: 1.7;
}

.service-card:hover p {
  color: #c8bca9;
}

.service-arrow {
  color: var(--gold);
  font-size: 18px;
  text-align: right;
}

/* Gallery */
.gallery-section {
  padding: 65px clamp(28px, 5vw, 84px) 55px;
  color: var(--ink);
  background: #f8f4eb;
}

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

.gallery-heading h2 {
  margin: 0;
  font-family: var(--font-inter);
  font-size: clamp(50px, 5.5vw, 82px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.gallery-heading h2 em {
  color: var(--gold);
  font-style: normal;
  font-weight: 300;
}

.gallery-heading > p {
  max-width: 420px;
  margin: 0 0 8px;
  color: #756b5f;
  font-size: 14px;
  line-height: 1.8;
}

.luxury-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 270px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  padding: 0;
  overflow: hidden;
  color: #fff;
  text-align: left;
  border: 0;
  border-radius: 18px;
  background: var(--night);
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery-item:nth-child(2) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-item:nth-child(6),
.gallery-item:nth-child(7) {
  grid-column: span 6;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 6, 3, 0.18), transparent 35%);
  transition: background 0.4s ease;
}

.gallery-caption,
.gallery-number {
  display: none;
}

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

.gallery-item:hover .gallery-shade {
  background: rgba(8, 6, 3, 0.06);
}

.gallery-open {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(8, 6, 3, 0.42);
  backdrop-filter: blur(7px);
  transform: scale(0.8);
  transition: 0.35s ease;
}

.gallery-item:hover .gallery-open {
  opacity: 1;
  transform: scale(1);
}

/* Gallery lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  padding: 70px;
  display: none;
  place-items: center;
  background: rgba(8, 6, 3, 0.96);
}

.gallery-lightbox.open {
  display: grid;
}

.gallery-lightbox img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: 16px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-arrow {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: transparent;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.06);
}

.lightbox-previous {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}

.lightbox-caption {
  position: absolute;
  bottom: 25px;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Contact */
.contact-section {
  position: relative;
  padding: 70px 24px 90px;
  overflow: hidden;
  color: #17130e;
  text-align: center;
  border-top: 1px solid #ddd3c2;
  background: #fff;
}

.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(176, 141, 87, 0.18);
  border-radius: 50%;
}

.contact-section::before {
  top: -250px;
  left: -260px;
}

.contact-section::after {
  right: -280px;
  bottom: -300px;
}

.contact-monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(176, 141, 87, 0.055);
  font-family: var(--font-inter);
  font-size: 370px;
  font-weight: 800;
  line-height: 1;
  transform: translate(-50%, -52%);
}

.contact-section > *:not(.contact-monogram) {
  position: relative;
  z-index: 1;
}

.contact-section h2 {
  max-width: 980px;
  margin: 0 auto;
}

.contact-section h2 em {
  background: linear-gradient(110deg, #80602f, #c8a769 55%, #9a753d);
  background-clip: text;
  -webkit-background-clip: text;
}

.contact-section > p:not(.section-kicker) {
  max-width: 650px;
  margin: 28px auto 38px;
  color: #6f6559;
  font-size: 15px;
  line-height: 1.8;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.contact-actions a {
  padding: 17px 24px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.primary-action {
  color: #fff;
  background: var(--night);
}

.primary-action span {
  margin-left: 13px;
  color: var(--ice);
}

.primary-action:hover {
  box-shadow: 0 12px 35px rgba(2, 11, 16, 0.2);
  transform: translateY(-2px);
}

.phone-action {
  border: 1px solid rgba(36, 25, 13, 0.35);
}

/* Footer */
footer {
  padding: 48px clamp(28px, 5vw, 84px);
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 34px;
  color: #8f8371;
  background: #050403;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

footer .footer-logo {
  width: 220px;
  height: auto;
  object-fit: contain;
  filter: none;
}

footer p {
  margin: 0;
}

/* Motion */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Tablet */
@media (max-width: 1200px) and (min-width: 951px) {
  .header-side-logo {
    left: 20px;
    width: 110px;
  }

  .site-header nav a {
    padding-inline: 18px;
  }
}

@media (max-width: 950px) {
  .site-header {
    height: var(--tablet-header-height);
    padding: 0 28px;
    align-items: center;
  }

  .site-header nav,
  .header-side-logo {
    display: none;
  }

  .brand {
    gap: 4px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand span {
    font-size: 6px;
  }

  .hero {
    padding-top: var(--tablet-header-height);
  }

  .hero-slideshow,
  .hero-overlay {
    inset: var(--tablet-header-height) 0 0;
  }

  .hero-content {
    min-height: calc(100svh - var(--tablet-header-height));
  }

  .slide-arrow {
    display: none;
  }

  .slide-dots {
    right: 20px;
    bottom: 18px;
  }

  .statement,
  .services-intro {
    grid-template-columns: 1fr;
  }

  .statement {
    padding: 80px 28px;
    gap: 40px;
  }

  .construction-band,
  .construction-band .band-content {
    min-height: 720px;
  }

  .construction-band .band-content {
    width: 100%;
    margin: 0;
    padding: 90px 30px;
    justify-content: flex-end;
  }

  .construction-band .band-image::before {
    background: linear-gradient(0deg, rgba(8, 6, 3, 0.92), rgba(8, 6, 3, 0.6) 55%, rgba(8, 6, 3, 0.1));
  }

  .services-intro {
    gap: 55px;
  }

  .management-heading {
    padding-right: 0;
  }

  .management-visual img {
    height: 460px;
  }

  .service-card {
    grid-template-columns: 80px minmax(220px, 1fr) minmax(240px, 1fr) 30px;
    gap: 16px;
  }

  .gallery-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 6;
    grid-row: span 1;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 620px) {
  .site-header {
    height: var(--mobile-header-height);
    padding: 0 20px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand span {
    font-size: 5px;
    letter-spacing: 0.18em;
  }

  .hero {
    min-height: 100svh;
    padding-top: var(--mobile-header-height);
  }

  .hero-slideshow,
  .hero-overlay {
    inset: var(--mobile-header-height) 0 0;
  }

  .hero-content {
    min-height: calc(100svh - var(--mobile-header-height));
    padding: 55px 18px 100px;
  }

  .hero h1 {
    font-size: 45px;
    line-height: 0.94;
  }

  .hero-copy {
    margin: 22px 0 25px;
  }

  .hero-signature {
    gap: 8px;
    font-size: 6px;
    letter-spacing: 0.16em;
  }

  .marquee {
    padding: 11px 0;
  }

  .statement {
    padding: 65px 20px;
    gap: 32px;
  }

  .statement h2,
  .services-intro h2,
  .contact-section h2 {
    font-size: 48px;
  }

  .construction-band,
  .construction-band .band-content {
    min-height: 650px;
  }

  .construction-band .band-content {
    padding: 70px 22px;
  }

  .band-content h2 {
    font-size: 53px;
  }

  .services-section {
    padding: 90px 20px 45px;
  }

  .services-intro {
    margin-bottom: 65px;
  }

  .management-heading h2 {
    font-size: 52px;
  }

  .management-visual img {
    height: 330px;
    border-radius: 18px;
  }

  .management-caption,
  .management-heading .management-caption {
    margin: 20px 2px 0;
  }

  .service-card {
    padding: 27px 6px;
    grid-template-columns: 50px 1fr 24px;
    gap: 10px;
  }

  .service-card p {
    display: none;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-arrow {
    grid-column: 3;
  }

  .gallery-section {
    padding: 50px 20px 40px;
  }

  .luxury-gallery {
    grid-auto-rows: 280px;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 12;
  }

  .gallery-lightbox {
    padding: 20px;
  }

  .lightbox-arrow {
    display: none;
  }

  .contact-section {
    padding: 55px 20px 70px;
  }

  .contact-monogram {
    font-size: 250px;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Back to top button */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: #100d08;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #a57c42;
}

@media (max-width: 600px) {
    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
}

/* Navigation buttons – Whipbird logo colours */
.site-header nav a {
    border-color: #00a9cf;
    color: #123f61;
    background: transparent;
}

.site-header nav a i {
    color: #00a9cf;
}

.site-header nav a:hover,
.site-header nav a:focus {
    background: linear-gradient(135deg, #00a9cf, #123f61);
    border-color: #00a9cf;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 169, 207, 0.22);
}

.site-header nav a:hover i,
.site-header nav a:focus i {
    color: #ffffff;
}


/* Whipbird branded service-card hover */
.service-card:hover {
    background: linear-gradient(135deg, #00a9cf 0%, #123f61 100%);
    border-color: #00a9cf;
    box-shadow: 0 15px 35px rgba(0, 169, 207, 0.22);
}

.service-card:hover h3,
.service-card:hover p {
    color: #ffffff;
}

.service-card:hover .service-number,
.service-card:hover .service-icon,
.service-card:hover .service-arrow {
    color: #ffffff;
}

.service-card:hover .service-icon {
    border-color: rgba(255, 255, 255, 0.45);
}

.service-card {
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-3px);
}
