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

:root {
  --bg: #fafaf9;
  --bg-tinted: #f3f0ec;
  --text: #1a1a1a;
  --text-muted: #6b6460;
  --accent: #b5894a;
  --accent-dark: #9a7240;
  --border: #e5e0d8;
  --max-w: 1100px;
  --pad-section: 88px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Layout ─────────────────────────────────────────── */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Header ─────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 249, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

nav {
  display: flex;
  gap: 36px;
}

nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.18s;
}

nav a:hover {
  color: var(--accent);
}

/* ─── Hero ───────────────────────────────────────────── */

.hero {
  position: relative;
  height: 82vh;
  min-height: 520px;
  background-image: url('durham-hero.jpg');
  background-size: cover;
  background-position: center 40%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.62) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 600;
  color: #fff;
  max-width: 640px;
  margin-bottom: 18px;
}

.hero-content .hero-sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
}

/* ─── Sections ───────────────────────────────────────── */

.section {
  padding: var(--pad-section) 0;
}

.section-tinted {
  background: var(--bg-tinted);
}

.eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 10px;
}

.section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-intro {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.72;
}

/* ─── Hotel Gallery ──────────────────────────────────── */

.hotel-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.gallery-top {
  height: 480px;
  border-radius: 4px;
  overflow: hidden;
}

.gallery-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-bottom-item {
  height: 300px;
  border-radius: 4px;
  overflow: hidden;
}

.cta-wrap {
  text-align: center;
}

/* ─── Buttons ────────────────────────────────────────── */

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 40px;
  border-radius: 2px;
  transition: background 0.18s;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  display: inline-block;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 2px;
  transition: background 0.18s, color 0.18s;
  margin-top: 8px;
}

.btn-secondary:hover {
  background: var(--accent);
  color: #fff;
}

/* ─── Cards ──────────────────────────────────────────── */

.cards-grid {
  display: grid;
  gap: 20px;
}

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

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.section-tinted .card {
  background: #fff;
}

.card-body {
  padding: 24px 26px 28px;
}

.card-body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Card image ─────────────────────────────────────── */

.card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

/* ─── Placeholder images ─────────────────────────────── */

.img-placeholder {
  background: #e8e4df;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder span {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b0a89e;
}

/* ─── Feature card ───────────────────────────────────── */

.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.feature-img {
  aspect-ratio: unset !important;
  min-height: 380px;
}

.feature-card--tall .feature-img {
  min-height: 480px;
}

.feature-body {
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.feature-body h3 {
  font-size: 1.625rem;
  font-weight: 600;
}

.feature-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── Transport ──────────────────────────────────────── */

.transport-row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 40px;
}

.transport-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-top: 2px;
}

.transport-icon svg {
  width: 100%;
  height: 100%;
}

.transport-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.transport-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 10px;
}

.transport-body p:last-child {
  margin-bottom: 0;
}

/* ─── About ──────────────────────────────────────────── */

.about {
  display: flex;
  align-items: center;
  gap: 52px;
}

.about-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.about-body {
  flex: 1;
}

.about-body h2 {
  margin-bottom: 12px;
}

.about-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

@media (max-width: 680px) {
  .about {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
}

/* ─── Footer ─────────────────────────────────────────── */

.site-footer {
  background: #1a1a1a;
  padding: 52px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer .wordmark {
  color: #fff;
}

.footer-meta {
  text-align: right;
}

.site-footer p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── Tags ───────────────────────────────────────────── */

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.tag--accent {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── Eat section ────────────────────────────────────── */

.eat-section {
  position: relative;
  background-image: url('steak.jpg');
  background-size: cover;
  background-position: center;
}

.eat-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.72);
}

.eat-content {
  position: relative;
  z-index: 1;
}

.eat-section .eyebrow {
  color: var(--accent);
}

.eat-section h2 {
  color: #fff;
}

.eat-section .section-intro {
  color: rgba(255, 255, 255, 0.72);
}

.eat-section .card {
  background: #fff;
}

/* ─── Drink section ──────────────────────────────────── */

.drink-section {
  position: relative;
  background-image: url('guinness.jpg');
  background-size: cover;
  background-position: center;
}

.drink-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.72);
}

.drink-content {
  position: relative;
  z-index: 1;
}

.drink-section .eyebrow {
  color: var(--accent);
}

.drink-section h2 {
  color: #fff;
}

.drink-section .section-intro {
  color: rgba(255, 255, 255, 0.72);
}

.drink-section .card {
  background: #fff;
}

/* ─── Responsive ─────────────────────────────────────── */

@media (max-width: 900px) {
  :root {
    --pad-section: 64px;
  }

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

@media (max-width: 680px) {
  :root {
    --pad-section: 52px;
  }

  nav {
    display: none;
  }

  .hero {
    padding-bottom: 48px;
  }

  .gallery-top {
    height: 240px;
  }

  .gallery-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-bottom-item {
    height: 160px;
  }

  .cards-2,
  .cards-3 {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-card .feature-img {
    order: -1;
  }

  .feature-img {
    min-height: 220px !important;
    aspect-ratio: 16 / 9 !important;
  }

  .feature-body {
    padding: 32px 24px;
  }

  .transport-row {
    flex-direction: column;
    padding: 28px 24px;
    gap: 18px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-meta {
    text-align: center;
  }

  .btn-primary,
  .btn-secondary {
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
}
