:root {
  --ink: #080706;
  --ink-soft: #15120e;
  --cream: #f5f0e6;
  --paper: #fffdf8;
  --gold: #d9ad4f;
  --gold-bright: #f2cf7b;
  --gold-deep: #93601d;
  --muted-dark: #756f65;
  --muted-light: #bdb5a9;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(20, 17, 13, 0.13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
h4,
p,
dl,
dd,
figure,
ol,
ul {
  margin-top: 0;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold-bright);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 82px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(8, 7, 6, 0.91);
  color: #fff;
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: min(1280px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-monogram,
.footer-monogram {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(242, 207, 123, 0.72);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: -0.08em;
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.05;
}

.brand-name small {
  margin-top: 5px;
  color: var(--muted-light);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  color: #d8d3ca;
  font-size: 0.78rem;
  font-weight: 700;
}

.desktop-nav a,
.booking-instagram,
.site-footer a,
.text-link {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--gold-bright);
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  transition: background-color 180ms ease, color 180ms ease;
}

.header-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 82px);
  overflow: hidden;
  padding: 78px 0 94px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.03), transparent 38%),
    var(--ink);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.11) 0.7px, transparent 0.7px);
  background-size: 9px 9px;
  content: "";
  opacity: 0.08;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 8%;
  right: -13%;
  width: 54vw;
  height: 54vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 161, 53, 0.22), transparent 65%);
  filter: blur(12px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  gap: clamp(52px, 7vw, 108px);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--gold-bright);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-dark {
  color: var(--gold-deep);
}

.hero h1 {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(4.4rem, 7vw, 7.55rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.84;
}

.hero h1 span {
  display: block;
  margin-top: 17px;
  color: var(--gold-bright);
  font-style: italic;
}

.hero-intro {
  max-width: 550px;
  margin-bottom: 34px;
  color: #c9c3ba;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.8;
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.text-link svg,
.mobile-book-bar svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.button-gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
  color: var(--ink);
  box-shadow: 0 16px 44px rgba(180, 124, 25, 0.18);
}

.button-gold:hover {
  background: linear-gradient(120deg, var(--gold-bright), #ffe7a6);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.hero-details {
  display: flex;
  gap: 52px;
  margin: 45px 0 0;
}

.hero-details div {
  position: relative;
}

.hero-details div + div::before {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: -26px;
  width: 1px;
  background: var(--line-dark);
  content: "";
}

.hero-details dt {
  margin-bottom: 5px;
  color: #8f8980;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-details dd {
  color: #f2eee8;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.hero-image-wrap {
  position: absolute;
  inset: 0 0 24px 9%;
  overflow: hidden;
  border: 1px solid rgba(235, 202, 122, 0.42);
  border-radius: 48% 48% 24px 24px;
  background: #1c1711;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  filter: saturate(0.82) contrast(1.03);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 3, 2, 0.6));
  content: "";
}

.hero-stamp {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 21px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(8, 7, 6, 0.55);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-logo-card {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: 178px;
  padding: 13px;
  border: 1px solid rgba(235, 202, 122, 0.4);
  border-radius: 20px;
  background: #050505;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
  transform: rotate(-3deg);
}

.hero-logo-card img {
  width: 100%;
  border-radius: 11px;
}

.area-ribbon {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #12100d;
  color: #d8d2c9;
}

.area-ribbon-track {
  display: flex;
  min-height: 72px;
  padding: 0 30px;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 55px);
  white-space: nowrap;
}

.area-ribbon span {
  font-family: var(--serif);
  font-size: 1.06rem;
}

.area-ribbon i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

.section {
  padding: 118px 0;
}

.section-services,
.section-gallery,
.how-it-works {
  background: var(--cream);
}

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

.section-heading h2,
.story-copy h2,
.section-areas h2,
.booking-copy h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.1vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.section-heading > p {
  max-width: 430px;
  margin-bottom: 3px;
  color: var(--muted-dark);
  line-height: 1.8;
}

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

.service-group {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(47, 36, 19, 0.055);
}

.service-group-heading {
  display: flex;
  padding: 31px 32px 28px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line-light);
}

.service-group-heading span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(147, 96, 29, 0.32);
  border-radius: 50%;
  color: var(--gold-deep);
  font-size: 0.64rem;
  font-weight: 900;
}

.service-group-heading h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
}

.service-list {
  padding: 0 32px;
}

.service-row {
  display: flex;
  min-height: 99px;
  padding: 21px 0;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid var(--line-light);
}

.service-row:last-child {
  border-bottom: 0;
}

.service-row h4 {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.28;
}

.service-row p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 0.76rem;
}

.service-row strong {
  flex: 0 0 auto;
  color: var(--gold-deep);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.price-note {
  margin: 24px 0 0;
  color: var(--muted-dark);
  font-size: 0.72rem;
  text-align: center;
}

.mobile-story {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background: var(--ink);
  color: #fff;
}

.mobile-story::after {
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(236, 198, 108, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(236, 198, 108, 0.025), 0 0 0 140px rgba(236, 198, 108, 0.016);
  content: "";
}

.story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(310px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(60px, 9vw, 135px);
}

.story-logo {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(235, 202, 122, 0.34);
  border-radius: 32px;
  background: #020202;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.35);
}

.story-logo::before {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(217, 173, 79, 0.16), transparent 52%);
  content: "";
}

.story-logo img {
  position: relative;
  width: 100%;
  border-radius: 18px;
}

.story-copy h2 {
  max-width: 670px;
  margin-bottom: 30px;
}

.story-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 35px;
  color: #c8c2b9;
  font-size: 1.02rem;
  line-height: 1.9;
}

.story-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.story-points span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #ded9d1;
  font-size: 0.68rem;
  font-weight: 750;
}

.gallery-heading {
  align-items: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-deep);
  font-size: 0.75rem;
  font-weight: 850;
}

.text-link:hover,
.booking-instagram:hover {
  color: #5f3a0d;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 245px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 18px;
  background: #d7cfc1;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.gallery-wide {
  grid-column: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-item:nth-child(2) img {
  object-position: center 30%;
}

.gallery-item:nth-child(3) img {
  object-position: center 42%;
}

.how-it-works {
  padding-top: 32px;
}

.centered-heading {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 240px;
  padding: 33px 34px 28px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.steps li + li {
  border-left: 1px solid var(--line-light);
}

.steps span {
  display: block;
  margin-bottom: 52px;
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.steps h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 0.86rem;
  line-height: 1.75;
}

.section-areas {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  color: #fff;
}

.section-areas::before {
  position: absolute;
  top: -250px;
  left: -250px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(217, 173, 79, 0.13);
  border-radius: 50%;
  content: "";
}

.areas-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.section-areas h2 {
  margin-bottom: 28px;
}

.areas-intro {
  max-width: 520px;
  margin-bottom: 32px;
  color: #c4bdb4;
  line-height: 1.85;
}

.suburb-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.suburb-list li {
  position: relative;
  padding: 19px 12px 19px 25px;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--serif);
  font-size: 1.28rem;
}

.suburb-list li::before {
  position: absolute;
  top: 50%;
  left: 2px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.suburb-list li:nth-child(odd) {
  margin-right: 26px;
}

.booking-section {
  background: var(--cream);
}

.booking-card {
  display: grid;
  padding: clamp(38px, 6vw, 76px);
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(45px, 8vw, 120px);
  border: 1px solid rgba(147, 96, 29, 0.28);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), transparent 62%),
    #e9d29c;
  box-shadow: 0 30px 80px rgba(62, 40, 9, 0.1);
}

.booking-copy h2 {
  margin-bottom: 24px;
}

.booking-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 0;
  color: #5e523e;
  line-height: 1.8;
}

.booking-actions {
  flex-direction: column;
  align-items: stretch;
}

.button-black {
  background: var(--ink);
  color: #fff;
}

.button-black:hover {
  background: #262018;
}

.button-outline-dark {
  border-color: rgba(8, 7, 6, 0.35);
  color: var(--ink);
}

.button-outline-dark:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.22);
}

.booking-instagram {
  margin-top: 10px;
  color: #5f4b28;
  font-size: 0.72rem;
  font-weight: 750;
  text-align: center;
}

.site-footer {
  padding: 80px 0 28px;
  background: var(--ink);
  color: #fff;
}

.footer-grid {
  display: grid;
  padding-bottom: 68px;
  grid-template-columns: 1.6fr 1fr 0.7fr;
  gap: 50px;
}

.footer-monogram {
  margin-bottom: 20px;
}

.footer-grid h2 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.footer-grid h3 {
  margin: 7px 0 20px;
  color: var(--gold-bright);
  font-size: 0.68rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin-bottom: 7px;
  color: #b9b2a9;
  font-size: 0.83rem;
}

.footer-grid > div:first-child p {
  max-width: 340px;
}

.footer-bottom {
  display: flex;
  padding-top: 26px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-dark);
  color: #77716a;
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-book-bar {
  display: none;
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
    gap: 46px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 8vw, 6.3rem);
  }

  .hero-visual {
    min-height: 575px;
  }

  .service-row h4 {
    font-size: 1rem;
  }

  .gallery-grid {
    grid-auto-rows: 215px;
  }
}

@media (max-width: 820px) {
  .container,
  .header-inner {
    width: min(100% - 34px, 680px);
  }

  .hero {
    min-height: auto;
    padding: 72px 0 80px;
  }

  .hero-grid,
  .story-grid,
  .areas-grid,
  .booking-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(4rem, 14vw, 6.7rem);
  }

  .hero-visual {
    width: min(100%, 570px);
    min-height: 650px;
    margin-inline: auto;
  }

  .hero-image-wrap {
    left: 8%;
  }

  .area-ribbon-track {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 24px;
  }

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

  .story-grid {
    gap: 58px;
  }

  .story-logo {
    width: min(100%, 500px);
    margin-inline: auto;
  }

  .gallery-grid {
    grid-auto-rows: 205px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .steps li {
    display: grid;
    min-height: 0;
    padding: 28px 0;
    grid-template-columns: 60px 1fr;
    column-gap: 12px;
    border-bottom: 1px solid var(--line-light);
  }

  .steps li + li {
    border-top: 0;
    border-left: 0;
  }

  .steps span {
    grid-row: span 2;
    margin: 4px 0 0;
  }

  .steps h3 {
    margin-bottom: 7px;
  }

  .areas-grid {
    gap: 48px;
  }

  .booking-card {
    gap: 38px;
  }
}

@media (max-width: 600px) {
  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-bottom: 76px;
  }

  .site-header {
    height: 72px;
  }

  .brand-monogram {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 0.96rem;
  }

  .brand-name small {
    display: none;
  }

  .header-cta {
    min-height: 39px;
    padding: 0 15px;
    font-size: 0.7rem;
  }

  .hero {
    padding: 58px 0 65px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 0.63rem;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    margin-bottom: 25px;
    font-size: clamp(3.45rem, 17vw, 5rem);
    line-height: 0.88;
  }

  .hero h1 span {
    margin-top: 12px;
  }

  .hero-intro {
    line-height: 1.72;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-details {
    gap: 38px;
    margin-top: 36px;
  }

  .hero-details div + div::before {
    left: -19px;
  }

  .hero-details dd {
    font-size: 0.93rem;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-image-wrap {
    inset: 0 0 18px 4%;
    border-radius: 45% 45% 20px 20px;
  }

  .hero-logo-card {
    width: 132px;
    padding: 9px;
    border-radius: 15px;
  }

  .hero-stamp {
    right: 13px;
    bottom: 14px;
    font-size: 0.56rem;
  }

  .section {
    padding: 75px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .story-copy h2,
  .section-areas h2,
  .booking-copy h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .service-group-heading {
    padding: 25px 21px;
  }

  .service-group-heading h3 {
    font-size: 1.62rem;
  }

  .service-list {
    padding: 0 21px;
  }

  .service-row {
    min-height: 91px;
    padding: 19px 0;
  }

  .service-row h4 {
    font-size: 0.98rem;
  }

  .mobile-story {
    padding: 78px 0;
  }

  .story-logo {
    padding: 17px;
    border-radius: 22px;
  }

  .gallery-heading .text-link {
    margin-top: 20px;
  }

  .gallery-grid {
    grid-auto-rows: 170px;
    gap: 9px;
  }

  .gallery-item {
    border-radius: 12px;
  }

  .gallery-mobile-hide {
    display: none;
  }

  .suburb-list li {
    padding: 16px 7px 16px 20px;
    font-size: 1.03rem;
  }

  .suburb-list li:nth-child(odd) {
    margin-right: 13px;
  }

  .booking-card {
    width: calc(100% - 26px);
    padding: 34px 24px;
    border-radius: 22px;
  }

  .button {
    min-height: 52px;
    padding: 0 20px;
  }

  .footer-grid {
    padding-bottom: 42px;
    grid-template-columns: 1fr;
    gap: 31px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-book-bar {
    position: fixed;
    z-index: 60;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 54px;
    padding: 0 21px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: linear-gradient(120deg, var(--gold), var(--gold-bright));
    color: var(--ink);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.3);
    font-size: 0.76rem;
    font-weight: 900;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
