/* The Artillery Tower, Plymouth - preview site
   Palette taken from the building: granite, candlelight on brass, and the Sound. */

:root {
  --granite-900: #14161a;
  --granite-850: #191c20;
  --granite-800: #21252a;
  --granite-700: #2f343a;
  --granite-600: #454c54;
  --stone-050: #faf8f4;
  --stone-100: #f1ede5;
  --stone-200: #e2dcd0;
  --stone-400: #b3aa9a;
  --gold: #c19a5b;
  --gold-bright: #dcbd85;
  --sea: #6d8f9c;
  --sea-deep: #2c4450;
  --ink: #15171b;
  --ink-soft: #4a4f57;

  --display: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --wrap: 72rem;
  --gap: clamp(1.25rem, 0.8rem + 2vw, 2.5rem);
  --section-y: clamp(3.5rem, 2rem + 6vw, 7rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--stone-050);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 0.6em;
  letter-spacing: -0.005em;
}

h1 { font-size: clamp(2.2rem, 1.3rem + 4.2vw, 4.1rem); }
h2 { font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + 0.6vw, 1.45rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gap); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.lede { font-size: clamp(1.06rem, 1rem + 0.5vw, 1.3rem); color: var(--ink-soft); }

/* ---------- focus, motion, skip link ---------- */

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.on-dark :focus-visible, .site-header :focus-visible, .hero :focus-visible, .site-footer :focus-visible {
  outline-color: var(--gold-bright);
}

.skip {
  position: absolute; left: 0.5rem; top: -4rem; z-index: 60;
  background: var(--stone-050); color: var(--ink);
  padding: 0.7rem 1.1rem; border-radius: 4px; font-weight: 500;
  transition: top 0.15s ease;
}
.skip:focus { top: 0.5rem; }

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

/* ---------- wordmark ---------- */

.wordmark { display: inline-flex; flex-direction: column; gap: 0.3em; text-decoration: none; }
.wordmark__name {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(0.98rem, 0.9rem + 0.55vw, 1.32rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
}
.wordmark__sub {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(0.5rem, 0.46rem + 0.18vw, 0.6rem);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--gold);
  white-space: nowrap;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  padding: 0.9rem 1.5rem; border-radius: 2px; border: 1px solid transparent;
  cursor: pointer; transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  min-height: 48px;
}
.btn--gold { background: var(--gold); color: var(--granite-900); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.btn--ghost { background: transparent; color: var(--stone-100); border-color: rgba(241, 237, 229, 0.45); }
.btn--ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.btn--ink { background: var(--granite-900); color: var(--stone-050); border-color: var(--granite-900); }
.btn--ink:hover { background: var(--granite-700); border-color: var(--granite-700); }
.btn--outline-ink { background: transparent; color: var(--ink); border-color: rgba(21, 23, 27, 0.35); }
.btn--outline-ink:hover { border-color: var(--ink); background: rgba(21, 23, 27, 0.04); }

/* ---------- header ---------- */

.site-header {
  background: var(--granite-900);
  color: var(--stone-100);
  border-bottom: 1px solid rgba(193, 154, 91, 0.28);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--gap); padding-block: 1.1rem;
}
.site-nav { display: none; }
.site-nav ul { display: flex; gap: 1.35rem; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; color: var(--stone-200); padding-block: 0.4rem;
  border-bottom: 1px solid transparent; white-space: nowrap;
}
.site-nav a:hover { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }
.header-call {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.95rem; font-weight: 500; letter-spacing: 0.04em;
  text-decoration: none; color: var(--stone-050);
  border: 1px solid rgba(193, 154, 91, 0.5); border-radius: 2px;
  padding: 0.6rem 1rem; min-height: 44px; white-space: nowrap;
}
.header-call:hover { background: var(--gold); color: var(--granite-900); border-color: var(--gold); }

/* Six nowrap labels plus the wordmark and the call button only fit comfortably from here. */
@media (min-width: 75rem) { .site-nav { display: block; } }

/* ---------- hero ---------- */

.hero { position: relative; background: var(--granite-900); color: var(--stone-100); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.42; }
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 22, 26, 0.78) 0%, rgba(20, 22, 26, 0.58) 45%, rgba(20, 22, 26, 0.92) 100%);
}
.hero__inner { position: relative; padding-block: clamp(4rem, 2.5rem + 8vw, 8.5rem); }
.hero__body { max-width: 44rem; }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero h1 em { font-style: italic; color: var(--gold-bright); }
.hero__lede { font-size: clamp(1.05rem, 1rem + 0.5vw, 1.32rem); color: #ddd8ce; max-width: 34rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero__note { margin-top: 1.4rem; font-size: 0.85rem; letter-spacing: 0.03em; color: var(--stone-400); }

.hero__facts {
  position: relative;
  display: grid; gap: 1px;
  grid-template-columns: 1fr;
  background: rgba(193, 154, 91, 0.3);
  border-top: 1px solid rgba(193, 154, 91, 0.3);
}
.hero__fact { background: var(--granite-850); padding: 1.3rem var(--gap); }
.hero__fact dt {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem;
}
.hero__fact dd { margin: 0; font-family: var(--display); font-size: 1.32rem; color: var(--stone-050); line-height: 1.25; }
.hero__fact dd small { display: block; font-family: var(--sans); font-size: 0.78rem; color: var(--stone-400); letter-spacing: 0.02em; margin-top: 0.3rem; }

@media (min-width: 40rem) { .hero__facts { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) {
  .hero__facts { grid-template-columns: repeat(4, 1fr); }
  .hero__fact { padding-inline: 1.6rem; }
  .hero__facts { padding-inline: max(calc((100vw - var(--wrap)) / 2), 0px); }
}

/* ---------- generic sections ---------- */

.section { padding-block: var(--section-y); }
.section--stone { background: var(--stone-100); }
.section--dark { background: var(--granite-900); color: var(--stone-100); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .lede { color: #cfc9be; }

.section__head { max-width: 42rem; margin-bottom: clamp(2rem, 1.4rem + 2vw, 3.2rem); }

/* ---------- the two nights ---------- */

.nights { display: grid; gap: var(--gap); align-items: start; }
.nights__card {
  background: #fff; border: 1px solid var(--stone-200);
  border-top: 3px solid var(--gold); padding: clamp(1.5rem, 1.1rem + 1.4vw, 2.2rem);
}
.section--stone .nights__card { background: var(--stone-050); }
.nights__card h3 { margin-bottom: 0.5rem; }
.nights__list { list-style: none; margin: 0; padding: 0; }
.nights__list li { display: flex; gap: 0.8rem; padding-block: 0.6rem; border-bottom: 1px solid var(--stone-200); }
.nights__list li:last-child { border-bottom: 0; }
.nights__list dt, .nights__list b {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
  flex: 0 0 8.5rem; padding-top: 0.28rem;
}
.nights__list span { flex: 1; }
@media (min-width: 52rem) { .nights { grid-template-columns: 1.05fr 0.95fr; } }

.figure { margin: 0; }
.figure img { width: 100%; }
.figure figcaption {
  font-size: 0.8rem; color: var(--ink-soft); padding-top: 0.7rem; letter-spacing: 0.02em;
}
.section--dark .figure figcaption { color: var(--stone-400); }

/* ---------- menu ---------- */

.menu-price {
  display: flex; flex-wrap: wrap; gap: 0.6rem 2rem; align-items: baseline;
  padding: 1.2rem 0 1.6rem; border-bottom: 1px solid rgba(193, 154, 91, 0.35); margin-bottom: 2.2rem;
}
.menu-price__item { font-family: var(--display); font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.9rem); }
.menu-price__item small { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.15rem; }

.courses { display: grid; gap: clamp(2rem, 1.4rem + 2vw, 3rem); }
@media (min-width: 56rem) { .courses { grid-template-columns: repeat(3, 1fr); } }

.course h3 {
  font-family: var(--sans); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  padding-bottom: 0.8rem; margin-bottom: 1.1rem; border-bottom: 1px solid rgba(193, 154, 91, 0.3);
}
.course ul { list-style: none; margin: 0; padding: 0; }
.course li { font-family: var(--display); font-size: 1.22rem; line-height: 1.4; padding-block: 0.62rem; }
.course li + li { border-top: 1px solid rgba(226, 220, 208, 0.16); }
.course .sup { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.06em; color: var(--gold); margin-left: 0.35rem; white-space: nowrap; }
.course .aside { display: block; font-family: var(--sans); font-size: 0.76rem; color: var(--stone-400); letter-spacing: 0.02em; }

.menu-foot { margin-top: clamp(2rem, 1.5rem + 1.6vw, 3rem); display: grid; gap: var(--gap); }
@media (min-width: 52rem) { .menu-foot { grid-template-columns: 1fr 1fr; } }
.menu-foot__note {
  border-left: 2px solid var(--gold); padding: 0.2rem 0 0.2rem 1.2rem;
  font-size: 0.95rem; color: #cfc9be;
}

/* ---------- history ---------- */

.history { display: grid; gap: var(--gap); align-items: start; }
@media (min-width: 56rem) {
  .history { grid-template-columns: 0.95fr 1.05fr; }
  /* The source photograph is landscape, so it is cropped upright here to stand level with the
     timeline instead of floating in the middle of an empty column. */
  .history .figure img { aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 45%; }
}

.timeline { list-style: none; margin: 1.6rem 0 0; padding: 0; }
.timeline li { display: flex; gap: 1rem; padding-block: 0.7rem; border-top: 1px solid var(--stone-200); }
.timeline li:last-child { border-bottom: 1px solid var(--stone-200); }
.timeline b {
  flex: 0 0 5rem; font-family: var(--display); font-size: 1.15rem; color: var(--gold);
  font-weight: 500;
}
.timeline span { flex: 1; font-size: 0.97rem; color: var(--ink-soft); }

/* ---------- gallery ---------- */

.gallery { display: grid; gap: 1px; background: rgba(193, 154, 91, 0.25); grid-template-columns: repeat(2, 1fr); }
.gallery figure { margin: 0; position: relative; background: var(--granite-800); }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.gallery figcaption {
  font-size: 0.76rem; letter-spacing: 0.02em; color: var(--stone-400);
  padding: 0.6rem 0.8rem; background: var(--granite-850);
}
@media (min-width: 52rem) { .gallery { grid-template-columns: repeat(4, 1fr); } }

/* ---------- reviews ---------- */

.reviews { display: grid; gap: var(--gap); }
@media (min-width: 52rem) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: var(--stone-050); border: 1px solid var(--stone-200);
  padding: clamp(1.3rem, 1rem + 1vw, 1.8rem); display: flex; flex-direction: column;
}
.review blockquote { margin: 0 0 1.2rem; font-family: var(--display); font-size: 1.16rem; line-height: 1.5; }
.review blockquote p { margin: 0; }
.review figcaption { margin-top: auto; font-size: 0.82rem; color: var(--ink-soft); letter-spacing: 0.02em; }
.review figcaption b { display: block; font-family: var(--sans); font-weight: 500; font-size: 0.9rem; color: var(--ink); letter-spacing: 0.04em; }

.score {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1.4rem;
  margin-bottom: 2rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--stone-200);
}
.score__big { font-family: var(--display); font-size: 2.6rem; line-height: 1; }
.score__meta { font-size: 0.9rem; color: var(--ink-soft); }
.score__badge {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); border: 1px solid var(--gold); padding: 0.45rem 0.8rem; border-radius: 2px;
}

/* ---------- suppliers ---------- */

.suppliers { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.1rem 2rem; }
@media (min-width: 40rem) { .suppliers { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 62rem) { .suppliers { grid-template-columns: repeat(3, 1fr); } }
.suppliers li { padding-block: 0.7rem; border-bottom: 1px solid rgba(226, 220, 208, 0.18); font-size: 0.97rem; }
.suppliers b { display: block; font-family: var(--sans); font-weight: 500; letter-spacing: 0.03em; color: #fff; }
.suppliers span { color: var(--stone-400); font-size: 0.9rem; }

/* ---------- visit / practical ---------- */

.visit { display: grid; gap: var(--gap); }
@media (min-width: 56rem) { .visit { grid-template-columns: 1fr 1fr; } }
.notes { list-style: none; margin: 0; padding: 0; }
.notes li { padding: 0.9rem 0 0.9rem 1.7rem; border-bottom: 1px solid var(--stone-200); position: relative; }
.notes li::before {
  content: ''; position: absolute; left: 0; top: 1.35rem;
  width: 7px; height: 7px; background: var(--gold); border-radius: 50%;
}
.notes li:last-child { border-bottom: 0; }
.notes b { font-family: var(--sans); font-weight: 500; letter-spacing: 0.03em; }

.address-card {
  background: var(--granite-900); color: var(--stone-100);
  padding: clamp(1.5rem, 1.2rem + 1.4vw, 2.2rem);
}
.address-card h3 { color: #fff; }
.address-card p { color: #cfc9be; }
.address-card__rows { list-style: none; margin: 0 0 1.6rem; padding: 0; }
.address-card__rows li { padding-block: 0.65rem; border-bottom: 1px solid rgba(241, 237, 229, 0.14); }
.address-card__rows li:last-child { border-bottom: 0; }
.address-card__rows span {
  display: block; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem;
}
.address-card a { color: var(--gold-bright); }

/* ---------- booking ---------- */

.booking { display: grid; gap: var(--gap); align-items: start; }
@media (min-width: 56rem) { .booking { grid-template-columns: 1fr 1fr; } }
.booking__call {
  background: var(--gold); color: var(--granite-900);
  padding: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
}
.booking__call h3 { color: var(--granite-900); }
.booking__number {
  display: inline-block; font-family: var(--display); font-size: clamp(2rem, 1.5rem + 2.4vw, 3rem);
  text-decoration: none; line-height: 1.1; margin-block: 0.4rem 0.8rem; color: var(--granite-900);
  border-bottom: 2px solid rgba(20, 22, 26, 0.3);
}
.booking__number:hover { border-bottom-color: var(--granite-900); }
.booking__call p { color: #4a3c20; }
.terms { list-style: none; margin: 0; padding: 0; }
.terms li { padding-block: 0.8rem; border-bottom: 1px solid var(--stone-200); font-size: 0.97rem; }
.terms li:last-child { border-bottom: 0; }
.terms b { font-family: var(--sans); font-weight: 500; }

/* ---------- footer ---------- */

.site-footer { background: var(--granite-900); color: var(--stone-400); padding-block: clamp(2.5rem, 2rem + 2vw, 4rem) 2rem; }
.site-footer__grid { display: grid; gap: var(--gap); }
@media (min-width: 48rem) { .site-footer__grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.site-footer h4 {
  font-family: var(--sans); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem;
}
.site-footer p, .site-footer li { font-size: 0.93rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding-block: 0.25rem; }
.site-footer a { color: var(--stone-100); text-decoration: none; border-bottom: 1px solid rgba(179, 170, 154, 0.4); }
.site-footer a:hover { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }
.site-footer__base {
  margin-top: clamp(2rem, 1.6rem + 1.4vw, 3rem); padding-top: 1.4rem;
  border-top: 1px solid rgba(179, 170, 154, 0.22);
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between;
  font-size: 0.8rem; letter-spacing: 0.02em;
}
.site-footer__base p { margin: 0; }

/* ---------- sticky mobile call bar ---------- */

.callbar {
  position: fixed; inset: auto 0 0 0; z-index: 50;
  display: flex; gap: 1px; background: rgba(193, 154, 91, 0.4);
  border-top: 1px solid rgba(193, 154, 91, 0.5);
}
.callbar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.45rem;
  min-height: 56px; text-decoration: none;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
}
.callbar__call { background: var(--gold); color: var(--granite-900); }
.callbar__menu { background: var(--granite-900); color: var(--stone-100); }
body { padding-bottom: 57px; }
/* Matches the nav breakpoint, so every width has either the nav or the call bar. */
@media (min-width: 75rem) {
  .callbar { display: none; }
  body { padding-bottom: 0; }
}
