/* HC Cykler — single page */

:root {
  --ink: #1a1814;
  --ink-soft: #4a443c;
  --cream: #f7f3ec;
  --cream-2: #ede7da;
  --paper: #ffffff;
  --accent: #c84b1d;
  --accent-deep: #8c2f10;
  --rule: rgba(26, 24, 20, 0.12);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.10), 0 30px 80px rgba(0,0,0,0.12);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin: 0 0 18px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); line-height: 1.02; letter-spacing: -0.025em; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.08; letter-spacing: -0.02em; }
h3 { font-size: 1.05rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1em; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 236, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
}
.nav__mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav__name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}
.nav__links a {
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__phone {
  font-weight: 600;
  color: var(--ink) !important;
  background: var(--paper);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 640px) {
  .nav__links a:not(.nav__phone) { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(200, 75, 29, 0.28);
}
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255,255,255,0.10); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 880px);
  overflow: hidden;
  isolation: isolate;
  background: #16130f;
}
.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.66) contrast(1.04) saturate(1.04);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.30) 50%, rgba(20,15,10,0.78) 100%);
  z-index: 1;
}
.hero__overlay {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 140px 28px 80px;
  color: #fff;
}
.hero__eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  margin: 0 0 22px;
}
.hero__title {
  color: #fff;
  max-width: 16ch;
  margin: 0 0 24px;
}
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 48ch;
  color: rgba(255,255,255,0.86);
  margin: 0 0 38px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Philosophy ---------- */
.philosophy {
  padding: clamp(72px, 12vw, 140px) 0;
  text-align: center;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}
.philosophy .kicker { display: inline-block; }
.philosophy__quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  max-width: 22ch;
  margin: 0 auto 22px;
}
.philosophy__quote em {
  color: var(--accent);
  font-style: italic;
}
.philosophy__sub {
  color: var(--ink-soft);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin: 0;
}

/* ---------- Section heads ---------- */
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head__sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 18px 0 0;
}

/* ---------- Services ---------- */
.services {
  padding: clamp(80px, 11vw, 130px) 0;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.services__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
}
.services__grid li {
  background: var(--paper);
  padding: 32px 28px;
  transition: background 0.25s ease;
}
.services__grid li:hover { background: var(--cream); }
.services__grid h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.services__grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}
.services__sales {
  margin-top: 40px;
  padding: 26px 28px;
  background: var(--cream-2);
  border-radius: 12px;
  font-size: 0.98rem;
  color: var(--ink);
}
.services__sales p { margin: 0; }

/* ---------- Gallery ---------- */
.gallery {
  padding: clamp(80px, 11vw, 130px) 0;
  background: var(--cream);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #2a2620;
  grid-column: span 2;
  grid-row: span 1;
  box-shadow: var(--shadow-sm);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery__item:hover img { transform: scale(1.04); }

.gallery__item--wide { grid-column: span 4; grid-row: span 2; }
.gallery__item:nth-child(2) { grid-row: span 2; }
.gallery__item:nth-child(3) { grid-row: span 1; }
.gallery__item:nth-child(4) { grid-row: span 1; }
.gallery__item:nth-child(6) { grid-row: span 2; }
.gallery__item:nth-child(7) { grid-row: span 2; }

@media (max-width: 900px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 10px;
  }
  .gallery__item, .gallery__item--wide { grid-column: span 1; grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; grid-row: span 2; }
}

/* ---------- Visit ---------- */
.visit {
  padding: clamp(80px, 11vw, 130px) 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.visit__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.visit__lede {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin: 22px 0 36px;
  max-width: 44ch;
}
.visit__details {
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  gap: 22px;
}
.visit__details > div {
  border-top: 1px solid var(--rule);
  padding-top: 18px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
}
.visit__details dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  font-weight: 600;
  padding-top: 4px;
}
.visit__details dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}
.visit__details a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.visit__details a:hover { text-decoration: underline; }

.visit__card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: #2a2620;
}
.visit__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visit__card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.72) 100%);
  color: #fff;
}
.visit__card-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.visit__card-tag {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

@media (max-width: 880px) {
  .visit__inner { grid-template-columns: 1fr; gap: 48px; }
  .visit__details > div { grid-template-columns: 110px 1fr; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 56px 0 64px;
}
.footer__inner { text-align: center; }
.footer__brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.footer__addr {
  margin: 0 0 18px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.86);
}
.footer__fine {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
