/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Variables */
:root {
  --bg-p: #0e0d0b;
  --bg-s: #1c1a18;
  --bg-t: #2d2926;
  --fg-p: #f7f4ef;
  --fg-m: rgba(247, 244, 239, .38);
  --fg-m2: rgba(247, 244, 239, .60);
  --bdr: rgba(192, 154, 91, .15);
  --bdr-s: rgba(247, 244, 239, .05);
  --rule: rgba(192, 154, 91, .20);
  --nav-bg: rgba(14, 13, 11, .88);
  --gold: #c09a5b;
  --gold-l: #e2c98a;
  --glow: rgba(192, 154, 91, .13);
  --gsub: rgba(192, 154, 91, .07);
  --gdim: rgba(192, 154, 91, .03);
  --grain: .03;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Tenor Sans', sans-serif;
}

html { scroll-behavior: smooth; zoom: 1.25; }

body {
  background: var(--bg-p);
  color: var(--fg-p);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .4s, color .4s;
}

/* Nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 72px;
  transition: background .45s, padding .45s, border-color .45s;
  border-bottom: 1px solid transparent;
}

nav.s {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  padding: 20px 72px;
  border-bottom-color: var(--bdr);
}

.n-logo {
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--fg-p);
  text-decoration: none;
  opacity: .85;
}

.n-links {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
}

.n-links a {
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-m);
  text-decoration: none;
  transition: color .2s;
}

.n-links a:hover { color: var(--fg-p); }

.n-enq {
  color: var(--gold) !important;
  border-bottom: 1px solid rgba(192, 154, 91, .4);
  padding-bottom: 2px;
  transition: border-color .2s !important;
}

.n-enq:hover { border-color: var(--gold) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 501;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fg-p);
  transition: transform .3s, opacity .3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Typography & Shared Components */
.tag {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 28px;
}

.h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--fg-p);
}

.h2 em {
  font-style: italic;
  color: var(--gold-l);
  font-weight: 300;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 72px;
}

.btn {
  font-family: var(--sans);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bg-p);
  background: var(--fg-p);
  text-decoration: none;
  padding: 17px 44px;
  display: inline-block;
  border: 1px solid var(--bdr-s);
  transition: background .3s, border-color .3s, color .3s;
  cursor: pointer;
  border-radius: 0;
}

.btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-p);
}

/* Footer */
footer {
  background: var(--bg-p);
  border-top: 1px solid var(--bdr);
  padding: 48px 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.flogo {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--fg-p);
  text-decoration: none;
  opacity: .55;
}

.flinks {
  display: flex;
  gap: 36px;
  list-style: none;
  justify-content: center;
}

.flinks a {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-m);
  text-decoration: none;
  transition: color .2s;
}

.flinks a:hover { color: var(--fg-p); }

.fcopy {
  font-family: var(--sans);
  font-size: .70rem;
  letter-spacing: .08em;
  color: var(--fg-m);
  opacity: .45;
  text-align: right;
}

/* Light Mode — Shared */
@media (prefers-color-scheme: light) {
  :root {
    --bg-p: #f7f4ef;
    --bg-s: #edeae3;
    --bg-t: #e2ddd5;
    --fg-p: #1c1a18;
    --fg-m: rgba(28, 26, 24, .65);
    --fg-m2: rgba(28, 26, 24, .84);
    --bdr: rgba(110, 85, 42, .28);
    --bdr-s: rgba(28, 26, 24, .09);
    --rule: rgba(110, 85, 42, .30);
    --nav-bg: rgba(245, 242, 237, .96);
    --gold: #7a5a28;
    --gold-l: #9a7535;
    --glow: rgba(110, 85, 42, .10);
    --gsub: rgba(110, 85, 42, .07);
    --gdim: rgba(110, 85, 42, .05);
    --grain: .020;
  }

  .n-logo { opacity: 1; }
  .n-links a { color: rgba(28, 26, 24, .70); }
  .n-enq { color: var(--gold) !important; border-bottom-color: rgba(122, 90, 40, .45) !important; }
  .n-enq:hover { border-color: var(--gold) !important; }
  .btn { color: var(--fg-p); background: transparent; border-color: rgba(28, 26, 24, .70); }
  .btn:hover { background: var(--gold); border-color: var(--gold); color: #f7f4ef; }
  .flogo { color: var(--fg-p); opacity: .65; }
  .flinks a { color: rgba(28, 26, 24, .68); }
  .flinks a:hover { color: var(--fg-p); }
  .fcopy { color: rgba(28, 26, 24, .55); }
  .tag { color: var(--gold); }
}

/* Mobile — Shared */
@media (max-width: 960px) {
  nav { padding: 22px 32px; }
  nav.s { padding: 16px 32px; }

  .nav-toggle { display: flex; }

  .n-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bdr);
    flex-direction: column;
    gap: 0;
    padding: 20px 32px 24px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s ease, opacity .25s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
  }

  nav.nav-open .n-links { max-height: 280px; opacity: 1; }
  .n-links li { border-bottom: 1px solid var(--bdr); }
  .n-links li:last-child { border-bottom: none; }
  .n-links a { display: block; padding: 14px 0; font-size: .82rem; }

  .wrap { padding: 0 32px; }

  footer { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .flogo, .fcopy { text-align: center; }
}
