@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ivory: #ffffff;
  --ivory-deep: #f4f4f4;
  --paper: #ffffff;
  --ink: #080808;
  --muted: #5d5d5d;
  --forest: #0d0d0d;
  --forest-soft: #171717;
  --forest-deep: #000000;
  --wine: #c7a24d;
  --wine-deep: #a57f2e;
  --gold: #c7a24d;
  --gold-soft: #f0d78a;
  --line: rgba(0, 0, 0, .14);
  --line-light: rgba(255, 255, 255, .22);
  --shadow: 0 28px 80px rgba(0, 0, 0, .24);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

::selection {
  background: var(--wine);
  color: var(--ivory);
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold-soft);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.on-dark p,
.on-dark .lead,
.site-footer p {
  color: rgba(255, 255, 255, .72);
}

.lead {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.page-shell {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(176, 144, 79, .08) 1px, transparent 1px) 0 0 / 12.5vw 100%,
    var(--ivory);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--ivory);
  padding: 10px 14px;
  border-radius: 999px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
  color: var(--ivory);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
  will-change: transform;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .82);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .10);
}

.site-header.nav-hidden {
  transform: translateY(-100%);
}

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

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

.brand img {
  width: 62px;
  height: 76px;
  object-fit: contain;
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
  color: inherit;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 12px 0;
}

.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 1px;
  background: currentColor;
  transition: right .25s var(--ease);
}

.nav-links a:hover:after,
.nav-links a[aria-current="page"]:after {
  right: 0;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 25px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease), transform .28s var(--ease);
}

.nav-cta {
  color: inherit;
  border-color: rgba(255, 255, 255, .5);
}

.site-header.is-scrolled .nav-cta {
  border-color: var(--ink);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-1px);
  background: var(--ink);
  color: var(--ivory);
}

.btn.primary {
  border-color: var(--wine);
  background: var(--wine);
  color: var(--ivory);
}

.btn.primary:hover {
  border-color: var(--wine-deep);
  background: var(--wine-deep);
  color: var(--ivory);
}

.btn.light {
  color: var(--ivory);
  border-color: rgba(255, 255, 255, .48);
}

.btn.light:hover {
  background: var(--ivory);
  color: var(--forest-deep);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.site-header.is-scrolled .menu-toggle {
  border-color: var(--line);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .24s var(--ease), opacity .24s var(--ease);
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  color: var(--ivory);
  background-color: var(--forest-deep);
  overflow: hidden;
}

.hero.compact {
  min-height: 70svh;
}

.hero-media,
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
}

.hero-media img,
.hero-media video {
  object-fit: cover;
}

.hero-media img {
  transform: scale(1.04);
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .66), rgba(0, 0, 0, .18) 38%, rgba(0, 0, 0, .9)),
    radial-gradient(circle at 20% 20%, rgba(176, 144, 79, .25), transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 clamp(74px, 10vw, 126px);
  text-align: center;
}

.hero-left {
  margin-left: max(20px, calc((100vw - 1180px) / 2));
  margin-right: 20px;
  text-align: left;
}

.hero h1 {
  margin-top: 18px;
  color: var(--ivory);
  font-size: clamp(3rem, 9vw, 7.4rem);
  font-weight: 600;
  text-transform: uppercase;
}

.hero.compact h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  text-transform: none;
}

.hero-kicker {
  margin-top: 14px;
  color: var(--gold-soft);
  font-size: clamp(.82rem, 1.7vw, 1.12rem);
  font-weight: 800;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.hero-note {
  max-width: 680px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, .88);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.24rem, 2.5vw, 1.72rem);
  font-style: italic;
  line-height: 1.45;
}

.hero-left .hero-note {
  margin-left: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.hero-left .hero-actions {
  justify-content: flex-start;
}

.quick-enquiry {
  position: relative;
  z-index: 5;
  margin-top: -48px;
}

.quick-enquiry form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-enquiry .field {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.field label {
  color: var(--gold);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 34px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  outline: 0;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--gold);
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.quick-enquiry button {
  border: 0;
  border-radius: 0;
  background: var(--wine);
  color: var(--ivory);
}

.section {
  padding: clamp(82px, 10vw, 142px) 0;
}

.section.tight {
  padding: clamp(62px, 8vw, 98px) 0;
}

.section.dark {
  background: var(--forest);
  color: var(--ivory);
}

.section.deep {
  background: var(--forest-deep);
  color: var(--ivory);
}

.section.ivory-deep {
  background: var(--ivory-deep);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.section-head h2,
.copy h2 {
  margin-top: 16px;
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
  font-weight: 400;
}

.section-head p,
.copy p {
  margin-top: 22px;
}

.dark h2,
.dark h3,
.deep h2,
.deep h3 {
  color: var(--ivory);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .92fr);
  gap: clamp(44px, 8vw, 96px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1fr);
}

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

.copy .btn {
  margin-top: 32px;
}

.frame {
  position: relative;
}

.frame:before {
  content: "";
  position: absolute;
  inset: 24px 24px -24px -24px;
  border: 1px solid var(--gold);
}

.frame img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.wide-media {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

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

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

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .62);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.dark .card,
.deep .card {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, .07);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(176, 144, 79, .55);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .14);
}

.card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  fill: none;
  stroke: var(--wine);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dark .card svg,
.deep .card svg {
  stroke: var(--gold-soft);
}

.card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.card p {
  font-size: .95rem;
}

.image-link {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--ivory);
}

.image-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.image-link:hover img {
  transform: scale(1.06);
}

.image-link:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(0, 0, 0, .9));
}

.image-link > div {
  position: relative;
  z-index: 1;
  padding: 30px;
}

.image-link h3 {
  color: var(--ivory);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-style: italic;
}

.image-link p {
  margin-top: 10px;
  color: rgba(255, 255, 255, .76);
  font-size: .95rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 54px;
  background: var(--gold);
}

.stat {
  padding: 34px 26px;
  background: var(--paper);
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--wine);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  background: var(--forest-deep);
}

.gallery-grid figure.featured {
  grid-column: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

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

.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .88));
  color: var(--ivory);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.feature-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.feature-row:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .95fr);
}

.feature-row:nth-child(even) .feature-media {
  order: 2;
}

.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-copy h2 {
  margin-top: 12px;
  font-size: clamp(1.95rem, 4vw, 3rem);
  font-weight: 400;
}

.feature-copy p {
  margin-top: 18px;
}

.quote-band {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--ivory);
  text-align: center;
}

.quote-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}

.quote-band .wrap {
  position: relative;
  z-index: 1;
  padding-top: clamp(86px, 10vw, 132px);
  padding-bottom: clamp(86px, 10vw, 132px);
}

.quote-band blockquote {
  max-width: 840px;
  margin: 0 auto;
  color: var(--ivory);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  font-style: italic;
  line-height: 1.35;
}

.quote-band cite {
  display: block;
  margin-top: 24px;
  color: var(--gold-soft);
  font-style: normal;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(40px, 7vw, 86px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .62);
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.contact-card a,
.contact-card p {
  color: var(--muted);
  line-height: 1.72;
}

.form-panel {
  padding: clamp(28px, 5vw, 54px);
  background: var(--forest);
  color: var(--ivory);
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

.form-panel .field input,
.form-panel .field select,
.form-panel .field textarea {
  color: var(--ivory);
  border-bottom-color: var(--line-light);
}

.form-panel .field input:focus,
.form-panel .field select:focus,
.form-panel .field textarea:focus {
  border-bottom-color: var(--gold-soft);
}

.form-panel .field label {
  color: var(--gold-soft);
}

.form-panel select option {
  color: var(--ink);
}

.form-note {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, .58);
  font-size: .88rem;
}

.map iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
  filter: saturate(.8) contrast(1.02);
}

.site-footer {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, .72);
  padding: 68px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-light);
}

.footer-mark {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 16px;
}

.footer-mark img {
  width: 92px;
  height: 114px;
  object-fit: contain;
}

.footer-mark span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--gold-soft);
  font-family: Manrope, Arial, sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
  color: rgba(255, 255, 255, .74);
  font-size: .92rem;
  line-height: 2;
}

.site-footer a:hover {
  color: var(--ivory);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  color: rgba(255, 255, 255, .55);
  font-size: .8rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

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

.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

.delay-3 {
  transition-delay: .3s;
}

@media (max-width: 1060px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 82px 0 auto 0;
    height: calc(100svh - 82px);
    padding: 34px 20px;
    background: var(--forest-deep);
    color: var(--ivory);
    display: grid;
    align-content: start;
    gap: 10px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
  }

  .nav-links a {
    padding: 18px 0;
    font-family: Fraunces, Georgia, serif;
    font-size: 2rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  body.nav-open .nav-links {
    transform: translateX(0);
  }

  .quick-enquiry {
    margin-top: 0;
  }

  .quick-enquiry form,
  .split,
  .split.reverse,
  .feature-row,
  .feature-row:nth-child(even),
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-row:nth-child(even) .feature-media {
    order: 0;
  }

  .quick-enquiry .field {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-enquiry button {
    min-height: 62px;
  }

  .frame {
    width: min(520px, calc(100% - 24px));
    margin: 0 auto;
  }

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

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

@media (max-width: 700px) {
  .wrap {
    width: min(100% - 32px, 1180px);
  }

  .brand span {
    font-size: .78rem;
    letter-spacing: .08em;
  }

  .hero,
  .hero.compact {
    min-height: 590px;
  }

  .hero-content,
  .hero-left {
    width: min(100% - 32px, 940px);
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .hero h1,
  .hero.compact h1 {
    font-size: clamp(2.8rem, 15vw, 4.8rem);
  }

  .hero-kicker {
    letter-spacing: .28em;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .cards,
  .cards.two,
  .cards.four,
  .gallery-grid,
  .stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid figure.featured {
    grid-column: auto;
  }

  .gallery-grid figure,
  .image-link {
    min-height: 310px;
  }

  .frame:before {
    inset: 14px 14px -14px -14px;
  }

  .card {
    padding: 24px;
  }

  .form-panel {
    padding: 26px;
  }

  .map iframe {
    height: 340px;
  }
}

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

  .fade-in {
    opacity: 1;
    transform: none;
  }
}
