/* Kent Towne Liquors — Public Website Design System
   Served as one static stylesheet, 0 JavaScript runtime dependency, maximum speed & discoverability. */
:root {
  --ink: #1a1614;
  --muted: #5c534c;
  --paper: #faf7f2;
  --surface: #ffffff;
  --line: #e5dcd3;
  --line-light: #f0e8e0;
  --accent: #6b1d2f;
  --accent-hover: #501321;
  --gold: #b8860b;
  --gold-bg: #fdfaf2;
  --gold-border: #e8d9ab;
  --dark: #141113;
  --max: 68rem;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Georgia, serif;
  -webkit-font-smoothing: antialiased;
}

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; background: #fff; padding: .5rem 1rem; z-index: 100; border-radius: 6px; }

a { color: var(--accent); text-decoration-thickness: 1px; underline-offset: 2px; }
a:hover { color: var(--accent-hover); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* --- Header & Navigation --- */
.site-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark);
  text-decoration: none;
  font-family: ui-serif, Georgia, serif;
  letter-spacing: -0.01em;
}

.brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.12));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

nav ul {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

nav a {
  color: var(--ink);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}

nav a:hover {
  background: rgba(107, 29, 47, 0.08);
  color: var(--accent);
}

.header-phone {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

/* --- Layout Main & Sections --- */
main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

section {
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--line);
}

section:last-child { border-bottom: 0; }

h1 {
  font-family: ui-serif, Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--dark);
  text-wrap: balance;
  letter-spacing: -0.02em;
}

h2 {
  font-family: ui-serif, Georgia, serif;
  font-size: 1.65rem;
  margin: 0 0 1rem;
  color: var(--dark);
  letter-spacing: -0.01em;
}

p { max-width: 65ch; margin-top: 0; color: var(--ink); }

/* --- Hero Section --- */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0 3rem;
  align-items: center;
}

.hero.has-image {
  grid-template-columns: 1.1fr 0.9fr;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  aspect-ratio: 16/10;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero .subhead {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}

.btn.primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(107, 29, 47, 0.25);
}
.btn.primary:hover {
  background: var(--accent-hover);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn.secondary {
  background: var(--gold-bg);
  color: var(--dark);
  border: 1px solid var(--gold-border);
}
.btn.secondary:hover {
  background: #f5edda;
}

.btn.outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn.outline:hover {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent);
}

/* --- Category Showcase Grid --- */
.showcase {
  padding: 3rem 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
}

.category-card-image {
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  background: var(--paper);
}

.category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.category-card:hover .category-card-image img {
  transform: scale(1.05);
}

.category-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-badge {
  align-self: flex-start;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: rgba(107, 29, 47, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.category-card h3 {
  font-family: ui-serif, Georgia, serif;
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
  color: var(--dark);
}

.category-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tag-list li {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.78rem;
  background: var(--paper);
  color: var(--ink);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  border: 1px solid var(--line-light);
}

/* --- Services ---
   The differentiator section: what the shop will do that the website never used to say. */
.services {
  padding: 3rem 0;
}

.services-grid {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
}

.service-card h3 {
  font-family: ui-serif, Georgia, serif;
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
  color: var(--dark);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}

.service-detail {
  margin-top: 0.6rem !important;
  font-size: 0.85rem !important;
  color: var(--ink) !important;
  border-top: 1px dashed var(--gold-border);
  padding-top: 0.6rem;
}

.services-action {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  font-weight: 600;
}

/* --- Holiday hours ---
   Rendered only when there is an upcoming exception, so the section disappears rather than
   sitting there empty for eleven months of the year. */
.hours-exceptions {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.hours-exceptions h3 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.hours-exceptions ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.hours-exceptions li {
  padding: 0.35rem 0;
}

.hours-exceptions li.is-closed strong {
  color: var(--accent);
}

.exception-note {
  color: var(--muted);
  font-size: 0.85rem;
}

/* --- FAQ --- */
.faq {
  padding: 3rem 0;
}

.faq-list {
  margin: 1.5rem 0 0;
  max-width: 44rem;
}

.faq-list dt {
  font-family: ui-serif, Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 1.5rem;
}

.faq-list dt:first-child {
  margin-top: 0;
}

.faq-list dd {
  margin: 0.45rem 0 0;
  color: var(--muted);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-light);
}

.faq-list dd:last-child {
  border-bottom: 0;
}

/* --- Review call to action --- */
.review-cta {
  margin-top: 1.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}

/* --- Gallery ---
   The contact page uses a focused, horizontal gallery instead of asking visitors to scan every
   photo at once. Scroll snap provides slideshow behavior without a script dependency. */
.gallery {
  padding: 3rem 0;
}

.gallery-slides {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

.gallery-slides li {
  flex: 0 0 min(100%, 46rem);
  scroll-snap-align: start;
}

.gallery-slides figure {
  margin: 0;
}

.gallery-slides img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--paper);
}

.gallery-slides figcaption {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.gallery-thumbnails {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  margin-top: 1rem;
  padding: 0.15rem 0 0.5rem;
}

.gallery-thumbnails a {
  flex: 0 0 7rem;
  color: var(--muted);
  font-size: 0.75rem;
  text-decoration: none;
}

.gallery-thumbnails img {
  width: 7rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.gallery-thumbnails span {
  display: block;
  margin-top: 0.25rem;
  text-align: center;
}

/* --- Static map ---
   A picture of the plaza, not an embedded map: one cached request, no script, no cookie. The
   aspect-ratio is declared so the figure reserves its space before the image decodes and the
   hours below it do not jump. */
.map-block {
  padding: 3rem 0;
}

.static-map {
  margin: 1.5rem 0 0;
  max-width: 44rem;
}

.static-map a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.static-map img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.static-map figcaption {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* --- Hours & Location --- */
.hours-card, .location-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.hours table {
  width: 100%;
  max-width: 32rem;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  margin-top: 0.5rem;
}

.hours th, .hours td {
  text-align: left;
  padding: 0.65rem 1rem 0.65rem 0;
  border-bottom: 1px dashed var(--line-light);
}

.hours tr:last-child th, .hours tr:last-child td {
  border-bottom: 0;
}

.hours th {
  color: var(--muted);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
}

.hours td {
  font-weight: 700;
  color: var(--dark);
}

address {
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1.02rem;
  font-style: italic;
  color: var(--ink);
}

.testimonial-card figcaption {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 0.85rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--dark);
  color: #d1c8c1;
  padding: 3.5rem 1.5rem 4rem;
  margin-top: 3rem;
  font-size: 0.92rem;
}

.footer-container {
  max-width: var(--max);
  margin: 0 auto;
}

.site-footer a { color: #f0c987; }
.site-footer a:hover { color: #ffffff; }

.slogans {
  margin: 0 0 1.25rem;
  font-family: ui-serif, Georgia, serif;
  font-size: 1.1rem;
  color: #ffffff;
}

.slogans span {
  display: inline-block;
  margin-right: 1.5rem;
}

.responsibly {
  margin-top: 1.5rem;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #e09f53;
}

/* --- Responsive Media Queries --- */
@media (max-width: 50rem) {
  .hero.has-image { grid-template-columns: 1fr; }
}

@media (max-width: 36rem) {
  .site-header { flex-direction: column; align-items: flex-start; }
  .header-actions { flex-direction: column; align-items: flex-start; width: 100%; }
  nav ul { flex-wrap: wrap; gap: 0.5rem; }
  .btn { width: 100%; }
}
