:root {
  --ink: #17110d;
  --ink-soft: #2c211a;
  --paper: #eee4d5;
  --cream: #f8f1e6;
  --rust: #9d432e;
  --rust-dark: #793020;
  --blue: #7d9893;
  --line: rgba(23, 17, 13, 0.2);
  --white-line: rgba(248, 241, 230, 0.24);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Manrope", "Trebuchet MS", sans-serif; font-size: 16px; line-height: 1.55; text-wrap: pretty; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 3px solid #e7a349; outline-offset: 4px; }
.page-shell { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.skip-link { position: fixed; top: 12px; left: 16px; z-index: 100; padding: 8px 12px; background: var(--cream); color: var(--ink); transform: translateY(-160%); transition: transform 500ms var(--ease); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: absolute; z-index: 20; top: 0; left: 0; width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 28px 40px; color: var(--cream); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; line-height: 1.05; }
.brand-mark { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 20px; transform: rotate(-25deg); }
.brand-name { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.desktop-nav { display: flex; gap: 28px; align-items: center; margin-left: auto; margin-right: 26px; }
.desktop-nav a, .mobile-menu a { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; transition: color 500ms var(--ease); }
.desktop-nav a:hover, .mobile-menu a:hover { color: #e7a349; }
.menu-toggle { display: none; border: 0; padding: 8px 0; background: transparent; color: inherit; font: inherit; }
.menu-toggle-label { margin-right: 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.menu-icon { position: relative; display: inline-block; width: 22px; height: 14px; vertical-align: middle; }
.menu-icon i { position: absolute; left: 0; width: 22px; height: 1px; background: currentColor; transition: transform 700ms var(--ease), top 700ms var(--ease); }
.menu-icon i:first-child { top: 3px; }
.menu-icon i:last-child { top: 11px; }
.menu-toggle[aria-expanded="true"] .menu-icon i:first-child { top: 7px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon i:last-child { top: 7px; transform: rotate(-45deg); }
.mobile-menu { position: absolute; top: 80px; right: 24px; display: grid; gap: 18px; width: min(280px, calc(100vw - 48px)); padding: 24px; background: var(--ink-soft); box-shadow: 0 18px 50px rgba(0,0,0,.25); }
.mobile-menu[hidden] { display: none; }

.hero { position: relative; display: grid; min-height: 100svh; overflow: hidden; background: var(--ink); color: var(--cream); isolation: isolate; }
.hero-picture, .hero-image { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-shade { position: absolute; z-index: -1; inset: 0; background: rgba(19, 12, 9, 0.38); }
.hero-content { align-self: end; padding-top: 150px; padding-bottom: 104px; }
.eyebrow, .section-kicker, .card-label { margin: 0 0 16px; font-size: 11px; font-weight: 700; letter-spacing: .14em; line-height: 1.4; text-transform: uppercase; }
.eyebrow { color: #e9bd81; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { font-family: "DM Serif Display", Georgia, serif; font-weight: 400; }
h1 { max-width: 700px; margin-bottom: 20px; color: #fff; font-size: clamp(48px, 6.4vw, 84px); letter-spacing: -0.035em; line-height: .95; }
.hero-intro { max-width: 470px; margin-bottom: 26px; color: rgba(248, 241, 230, .86); font-size: 16px; line-height: 1.5; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 44px; padding: 10px 15px; border: 1px solid transparent; font-size: 14px; font-weight: 700; letter-spacing: .01em; text-decoration: none; transition: transform 700ms var(--ease), background-color 700ms var(--ease), color 700ms var(--ease), border-color 700ms var(--ease); }
.button:hover { transform: translateY(-3px); }
.button:active { transform: translateY(1px) scale(.98); }
.button-primary { background: var(--cream); color: var(--ink); }
.button-primary:hover { background: #e7a349; }
.button-dark { background: var(--ink); color: var(--cream); }
.button-dark:hover { background: var(--rust-dark); }
.text-link { display: inline-flex; align-items: center; gap: 10px; width: fit-content; border-bottom: 1px solid currentColor; padding-bottom: 5px; font-size: 13px; font-weight: 700; text-decoration: none; transition: gap 700ms var(--ease), color 700ms var(--ease); }
.text-link:hover { gap: 16px; color: var(--rust); }
.light-link { color: var(--cream); }
.dark-link { color: var(--ink); }

.section { padding: 104px 0; }
.section-paper { background: var(--paper); }
.section-ink { background: var(--ink); color: var(--cream); }
.section-cream { background: var(--cream); }
.section-rust { background: var(--rust); color: var(--cream); }
.story-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr); gap: 72px; align-items: center; }
.section-kicker { color: var(--rust); }
.section-ink .section-kicker, .section-rust .section-kicker { color: #e7a349; }
h2 { margin-bottom: 22px; font-size: clamp(36px, 4.8vw, 62px); letter-spacing: -.025em; line-height: .98; }
.story-copy h2 { max-width: 500px; }
.story-copy p:not(.lede) { max-width: 530px; margin-bottom: 28px; color: var(--ink-soft); }
.lede { max-width: 560px; margin-bottom: 18px; color: var(--ink-soft); font-size: 19px; line-height: 1.5; }
.story-image { margin: 0; }
.story-image img { width: 100%; aspect-ratio: .76; object-fit: cover; object-position: center 45%; }
figcaption { margin-top: 12px; color: rgba(23,17,13,.62); font-size: 11px; letter-spacing: .02em; }

.tagline { padding: 118px 0 130px; }
.tagline-inner { max-width: 900px; }
.tagline h2 { max-width: 780px; margin-bottom: 0; font-size: clamp(38px, 6vw, 76px); line-height: 1; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.section-heading h2 { max-width: 680px; margin-bottom: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-flow: dense; gap: 14px; }
.gallery-item { position: relative; display: block; min-height: 240px; overflow: hidden; background: var(--ink-soft); color: var(--cream); text-decoration: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease); }
.gallery-item:hover img { transform: scale(1.02); }
.gallery-item::after { position: absolute; inset: auto 0 0; height: 40%; background: rgba(23,17,13,.38); content: ""; pointer-events: none; }
.gallery-caption { position: absolute; z-index: 1; right: 16px; bottom: 15px; left: 16px; font-size: 12px; font-weight: 700; line-height: 1.3; }
.gallery-item-large { grid-column: span 5; grid-row: span 2; min-height: 650px; }
.gallery-item-sign { grid-column: span 3; min-height: 318px; }
.gallery-item-mural { grid-column: span 4; min-height: 318px; }
.gallery-item-window { grid-column: span 3; min-height: 318px; }
.gallery-item-crowd { grid-column: span 4; min-height: 318px; }
.gallery-item-beer { grid-column: span 5; min-height: 318px; }
.gallery-item-guinness { grid-column: span 3; grid-row: span 2; min-height: 650px; }
.gallery-item-day { grid-column: span 4; min-height: 318px; }
.gallery-item-bar { grid-column: span 5; min-height: 318px; }
.gallery-item-large img { object-position: center 56%; }
.gallery-item-sign img { object-position: center 40%; }
.gallery-item-mural img { object-position: center 50%; }
.gallery-item-window img { object-position: center 54%; }
.gallery-item-crowd img { object-position: center 42%; }
.gallery-item-beer img { object-position: center 45%; }
.gallery-item-guinness img { object-position: center 48%; }
.gallery-item-day img { object-position: center 45%; }
.gallery-item-bar img { object-position: center 52%; }
.gallery-source { margin: 26px 0 0; color: rgba(23,17,13,.62); font-size: 12px; }
.gallery-source a { font-weight: 700; }

.pub-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 72px; }
.pub-heading h2 { max-width: 460px; }
.pub-heading .lede { color: rgba(248,241,230,.82); }
.pub-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 48px; }
.fact { padding: 0; }
.fact h3 { margin-bottom: 8px; font-family: "DM Serif Display", Georgia, serif; font-size: 20px; font-weight: 400; letter-spacing: 0; }
.fact p { max-width: 240px; margin: 0; color: rgba(248,241,230,.74); font-size: 14px; }

.visit-heading { margin-bottom: 50px; }
.visit-grid { display: grid; grid-template-columns: 1fr 1.25fr 1fr; gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.visit-card { min-height: 300px; padding: 34px 32px 38px; border-right: 1px solid var(--line); }
.visit-card:first-child { padding-left: 0; }
.visit-card:last-child { border-right: 0; padding-right: 0; }
.card-label { color: var(--rust); }
.address { margin: 0 0 28px; font-size: 23px; font-weight: 600; letter-spacing: -.04em; line-height: 1.28; }
.hours-list { margin: 0; }
.hours-list div { display: flex; justify-content: space-between; gap: 24px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.hours-list div:first-child { padding-top: 0; }
.hours-list dt { font-weight: 600; }
.hours-list dd { margin: 0; text-align: right; white-space: nowrap; }
.small-note { max-width: 360px; margin: 22px 0 0; color: rgba(23,17,13,.65); font-size: 12px; }
.contact-link { display: block; margin: 8px 0 34px; font-size: 22px; font-weight: 600; letter-spacing: -.04em; text-decoration: none; }
.social-links { display: grid; gap: 9px; margin-bottom: 30px; }
.social-links a { display: inline-flex; justify-content: space-between; max-width: 200px; border-bottom: 1px solid var(--line); padding-bottom: 7px; font-size: 13px; font-weight: 700; text-decoration: none; }
.review-link { display: flex; align-items: center; gap: 10px; max-width: 250px; border-top: 1px solid var(--line); padding-top: 20px; font-size: 11px; font-weight: 700; line-height: 1.25; text-decoration: none; }
.review-link > span:last-child { margin-left: auto; font-size: 16px; }
.review-score { font-size: 28px; font-weight: 600; letter-spacing: -.07em; }
.review-link small { color: rgba(23,17,13,.62); font-size: 10px; font-weight: 500; }

.site-footer { background: var(--ink); color: var(--cream); padding: 44px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; align-items: end; }
.footer-brand { margin-bottom: 16px; }
.footer-line { margin: 0; color: rgba(248,241,230,.62); font-size: 13px; }
.footer-links, .footer-meta { display: flex; flex-wrap: wrap; gap: 18px; justify-content: flex-end; }
.footer-links a, .footer-meta a, .footer-meta span { color: rgba(248,241,230,.72); font-size: 11px; text-decoration: none; }
.footer-links a:hover, .footer-meta a:hover { color: #e7a349; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.simple-page { min-height: 100vh; background: var(--paper); }
.simple-header { display: flex; align-items: center; justify-content: space-between; width: min(1160px, calc(100% - 48px)); margin: 0 auto; padding: 28px 0; }
.simple-main { padding-top: 120px; padding-bottom: 140px; }
.simple-main h1 { max-width: 760px; color: var(--ink); }
.simple-main .lede, .simple-main p:not(.section-kicker) { max-width: 680px; }
.simple-main .lede { color: var(--ink-soft); }
.simple-main p:not(.section-kicker) { color: var(--ink-soft); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; } .reveal { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .site-header { padding: 24px; }
  .desktop-nav { gap: 18px; margin-right: 0; }
  .story-grid, .pub-grid { grid-template-columns: 1fr; gap: 56px; }
  .story-image { max-width: 520px; }
  .pub-facts { max-width: 720px; }
  .visit-grid { grid-template-columns: 1fr 1fr; }
  .visit-card:nth-child(2) { border-right: 0; }
  .visit-card:last-child { grid-column: 1 / -1; min-height: auto; border-top: 1px solid var(--line); padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-meta { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .page-shell { width: min(100% - 40px, 560px); }
  .site-header { padding: 20px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: min(800px, 100svh); }
  .hero-image { object-position: center 56%; }
  .hero-shade { background: rgba(19, 12, 9, .50); }
  .hero-content { padding-top: 135px; padding-bottom: 112px; }
  h1 { max-width: 380px; font-size: clamp(42px, 12vw, 60px); }
  .hero-intro { max-width: 360px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .section { padding: 84px 0; }
  .tagline { padding: 92px 0 102px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 24px; margin-bottom: 36px; }
  .story-copy p:not(.lede) { margin-bottom: 24px; }
  .story-image img { aspect-ratio: .72; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item, .gallery-item-large, .gallery-item-sign, .gallery-item-mural, .gallery-item-window, .gallery-item-crowd, .gallery-item-beer, .gallery-item-guinness, .gallery-item-day, .gallery-item-bar { grid-column: span 1; grid-row: span 1; min-height: 0; aspect-ratio: 1 / 1.24; }
  .gallery-item-large, .gallery-item-sign { grid-column: span 2; aspect-ratio: 1.35 / 1; }
  .gallery-item-large img { object-position: center 58%; }
  .gallery-item-sign img { object-position: center 38%; }
  .gallery-item-mural img { object-position: center 50%; }
  .gallery-item-window img { object-position: center 54%; }
  .gallery-item-crowd img { object-position: center 42%; }
  .gallery-item-beer img { object-position: center 45%; }
  .gallery-item-guinness img { object-position: center 48%; }
  .gallery-item-day img { object-position: center 45%; }
  .gallery-item-bar img { object-position: center 52%; }
  .gallery-item-crowd, .gallery-item-beer, .gallery-item-bar { aspect-ratio: 1.16 / 1; }
  .gallery-caption { right: 11px; bottom: 11px; left: 11px; font-size: 10px; }
  .pub-facts { grid-template-columns: 1fr; gap: 24px; }
  .visit-heading { margin-bottom: 34px; }
  .visit-grid { display: block; }
  .visit-card, .visit-card:first-child, .visit-card:last-child { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); padding: 28px 0; }
  .visit-card:last-child { border-bottom: 0; padding-bottom: 4px; }
  .address { font-size: 22px; }
  .hours-list div { align-items: flex-start; flex-direction: column; gap: 4px; }
  .hours-list dd { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-links, .footer-meta { justify-content: flex-start; }
  .simple-header { width: min(100% - 40px, 560px); padding: 20px 0; }
  .simple-main { padding-top: 90px; padding-bottom: 100px; }
}

@media (max-width: 390px) {
  .page-shell { width: min(100% - 32px, 560px); }
  .site-header { padding: 18px 16px; }
  .brand-name { font-size: 11px; }
  .hero-content { padding-bottom: 118px; }
  .hero-intro { font-size: 15px; }
  .button { width: 100%; }
  .light-link { margin-left: 2px; }
  .section { padding: 72px 0; }
  .gallery-grid { gap: 8px; }
  .simple-header { width: min(100% - 32px, 560px); }
}
