:root {
  --ink: #183236;
  --ink-soft: #536467;
  --paper: #f4f1e9;
  --white: #fffdf8;
  --yellow: #ddc83e;
  --line: rgba(24, 50, 54, 0.2);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  width: 100%;
  padding: 24px clamp(24px, 4vw, 68px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 253, 248, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 12px;
  height: 12px;
  background: var(--yellow);
  border-radius: 50% 50% 0 50%;
  transform: rotate(45deg);
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a,
footer > a:last-child {
  position: relative;
}

.nav-links a::after,
footer > a:last-child::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
footer > a:last-child:hover::after,
footer > a:last-child:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-2px);
}

.button:focus-visible,
.nav-links a:focus-visible,
.brand:focus-visible,
.scroll-cue:focus-visible,
footer a:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.button-small {
  justify-self: end;
  min-height: 40px;
  padding: 0 17px;
}

.button-light {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 760px;
  height: 94svh;
  max-height: 1060px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 48%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 31, 34, 0.72) 0%, rgba(12, 31, 34, 0.2) 54%, rgba(12, 31, 34, 0.08) 100%),
    linear-gradient(0deg, rgba(12, 31, 34, 0.5) 0%, transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 160px clamp(24px, 7vw, 112px) clamp(72px, 9vh, 112px);
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 253, 248, 0.78);
}

.hero h1,
.intro h2,
.details h2,
.eco-panel h2,
.gallery-heading h2,
.location h2,
.enquiry h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 950px;
  font-size: clamp(68px, 9.5vw, 156px);
  line-height: 0.83;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-top: clamp(34px, 5vh, 62px);
}

.hero-bottom p {
  max-width: 480px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.34;
}

.scroll-cue {
  position: absolute;
  right: clamp(24px, 4vw, 68px);
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(88px, 11vw, 172px) clamp(24px, 7vw, 112px);
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(48px, 8vw, 150px);
  align-items: start;
}

.intro h2,
.details h2,
.gallery-heading h2,
.location h2 {
  font-size: clamp(48px, 6.2vw, 98px);
  line-height: 0.94;
}

.intro-copy {
  max-width: 580px;
  padding-top: 10px;
}

.intro-copy p,
.gallery-heading > p,
.location-lead > p,
.enquiry-action > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
}

.intro-copy p + p {
  margin-top: 24px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(72px, 9vw, 132px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-facts div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 156px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}

.quick-facts div:last-child {
  border-right: 0;
}

.quick-facts strong {
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
}

.quick-facts span {
  margin-top: auto;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-image {
  position: relative;
  height: min(78vw, 960px);
  min-height: 520px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-note {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 68px minmax(260px, 420px);
  width: min(580px, 78%);
  min-height: 150px;
  background: var(--yellow);
}

.image-note span {
  padding: 28px 20px;
  border-right: 1px solid rgba(24, 50, 54, 0.35);
  font-size: 11px;
  font-weight: 700;
}

.image-note p {
  align-self: end;
  margin: 0;
  padding: 28px;
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.3;
}

.details {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(480px, 1.2fr);
  gap: clamp(70px, 10vw, 180px);
}

.details-heading {
  position: sticky;
  top: 70px;
  align-self: start;
}

.details h2 {
  font-size: clamp(48px, 5.4vw, 84px);
}

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

.feature-row {
  display: grid;
  grid-template-columns: 42px minmax(150px, 0.8fr) minmax(160px, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.feature-row > span {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.feature-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.feature-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.eco-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.eco-number {
  align-self: center;
  margin-left: -0.05em;
  color: rgba(255, 253, 248, 0.08);
  font-family: var(--serif);
  font-size: clamp(180px, 25vw, 410px);
  line-height: 0.72;
  letter-spacing: -0.09em;
  white-space: nowrap;
}

.eco-copy {
  position: relative;
  align-self: center;
  max-width: 640px;
  padding: 80px clamp(32px, 7vw, 112px) 80px 32px;
}

.eco-panel h2 {
  margin-bottom: 42px;
  font-size: clamp(54px, 6.4vw, 100px);
  line-height: 0.88;
}

.eco-copy > p:last-child {
  max-width: 530px;
  margin: 0;
  color: rgba(255, 253, 248, 0.75);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.65;
}

.gallery-section {
  background: var(--white);
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 480px);
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(56px, 8vw, 110px);
}

.gallery-heading > p {
  padding-bottom: 6px;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: minmax(280px, 38vw);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: #d9d8d2;
}

.gallery-grid .gallery-wide {
  grid-column: 1 / -1;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-grid figure:hover img {
  transform: scale(1.025);
}

.gallery-grid figure:nth-child(2) img {
  object-position: 54% 50%;
}

.gallery-grid figure:nth-child(5) img {
  object-position: 50% 60%;
}

.location {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(440px, 1.2fr);
  gap: clamp(72px, 10vw, 180px);
  background: var(--paper);
}

.location-lead > p {
  max-width: 530px;
  margin-top: 38px;
}

.location-lead > .eyebrow {
  margin-top: 0;
}

.location-list {
  align-self: end;
  border-top: 1px solid var(--line);
}

.location-list article {
  display: grid;
  grid-template-columns: 118px 0.65fr 1fr;
  gap: 26px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.location-time {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.location-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.enquiry {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.65fr);
  gap: clamp(60px, 12vw, 200px);
  align-items: end;
  padding: clamp(90px, 12vw, 180px) clamp(24px, 7vw, 112px);
  background: var(--yellow);
  color: var(--ink);
}

.enquiry h2 {
  font-size: clamp(72px, 10vw, 160px);
  line-height: 0.82;
}

.enquiry .eyebrow,
.enquiry-action > p {
  color: rgba(24, 50, 54, 0.72);
}

.enquiry-action {
  display: flex;
  flex-direction: column;
  gap: 42px;
  align-items: flex-start;
}

.button-dark:hover {
  border-color: var(--ink);
  background: transparent;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 120px;
  padding: 30px clamp(24px, 4vw, 68px);
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.06em;
}

footer p {
  margin: 0;
  color: rgba(255, 253, 248, 0.62);
  text-align: center;
}

footer > a:last-child {
  justify-self: end;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .intro-grid,
  .gallery-heading {
    grid-template-columns: 1fr;
  }

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

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

  .details-heading {
    position: static;
  }

  .eco-panel {
    grid-template-columns: 0.8fr 1.2fr;
    min-height: 650px;
  }

  .eco-number {
    transform: rotate(-90deg);
  }

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

  .location-lead > p {
    max-width: 680px;
  }

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

  .enquiry-action {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 16px;
    padding: 18px 20px;
  }

  .brand {
    gap: 9px;
    font-size: 16px;
  }

  .brand-mark {
    width: 10px;
    height: 10px;
  }

  .site-header .button {
    min-height: 38px;
    padding: 0 13px;
    font-size: 10px;
  }

  .site-header .button span {
    display: none;
  }

  .hero {
    min-height: 690px;
    height: 100svh;
    max-height: 900px;
  }

  .hero-image {
    object-position: 55% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(12, 31, 34, 0.78) 0%, rgba(12, 31, 34, 0.08) 72%);
  }

  .hero-content {
    padding: 128px 20px 74px;
  }

  .hero h1 {
    font-size: clamp(60px, 20vw, 92px);
    line-height: 0.86;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .hero-bottom p {
    max-width: 390px;
    font-size: 18px;
  }

  .scroll-cue {
    right: 20px;
    bottom: 18px;
  }

  .section-pad {
    padding: 88px 20px;
  }

  .intro-grid {
    gap: 36px;
  }

  .intro h2,
  .details h2,
  .gallery-heading h2,
  .location h2 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .quick-facts {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 64px;
  }

  .quick-facts div {
    min-height: 132px;
    padding: 22px 18px;
  }

  .quick-facts div:nth-child(2) {
    border-right: 0;
  }

  .quick-facts div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .quick-facts strong {
    font-size: 43px;
  }

  .feature-image {
    height: 82svh;
    min-height: 580px;
  }

  .feature-image img {
    object-position: 60% center;
  }

  .image-note {
    grid-template-columns: 48px 1fr;
    width: calc(100% - 20px);
  }

  .image-note span {
    padding: 22px 14px;
  }

  .image-note p {
    padding: 22px;
    font-size: 18px;
  }

  .details {
    gap: 54px;
  }

  .feature-row {
    grid-template-columns: 34px 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .feature-row p {
    grid-column: 2;
  }

  .eco-panel {
    display: block;
    min-height: auto;
    padding-top: 72px;
  }

  .eco-number {
    margin: 0 0 -28px -14px;
    font-size: 40vw;
    line-height: 0.72;
    transform: none;
  }

  .eco-copy {
    padding: 48px 20px 92px;
  }

  .eco-panel h2 {
    font-size: clamp(52px, 16vw, 76px);
  }

  .gallery-heading {
    gap: 34px;
    margin-bottom: 50px;
  }

  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .gallery-grid figure {
    height: 72vw;
    min-height: 280px;
  }

  .gallery-grid figure:nth-child(2),
  .gallery-grid figure:nth-child(3) {
    height: 110vw;
  }

  .location {
    gap: 58px;
  }

  .location-list article {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 26px 0;
  }

  .enquiry {
    gap: 56px;
    padding: 92px 20px;
  }

  .enquiry h2 {
    font-size: clamp(68px, 21vw, 100px);
  }

  .enquiry-action {
    gap: 34px;
  }

  footer {
    grid-template-columns: 1fr auto;
    min-height: 160px;
    padding: 30px 20px;
  }

  footer p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

@media (max-width: 390px) {
  .site-header .button {
    width: 44px;
    overflow: hidden;
    color: transparent;
  }

  .site-header .button::after {
    position: absolute;
    color: var(--white);
    content: "↗";
    font-size: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
