:root {
  --ink: #1a1a1a;
  --ink-soft: #666666;
  --bg: #ffffff;
  --bg-alt: #f5efe3;
  --gold: #a9824f;
  --gold-dark: #8c6a3d;
  --border: #e6dcc8;
  --white: #ffffff;
}

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

body {
  font-family: 'Jost', 'Segoe UI', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-weight: 300;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
}

.divider {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 22px 0;
}

.divider-sm {
  width: 36px;
  margin: 14px auto;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

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

.btn-outline {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-outline-light {
  border-color: rgba(38,32,26,0.3);
  color: var(--ink);
  text-align: center;
}

.btn-outline-light:hover {
  background: var(--ink);
  color: var(--white);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.header-top {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
}

.brand-big {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
}

.header-logo {
  width: 44px;
  height: auto;
  flex-shrink: 0;
}

.header-spacer {
  grid-column: 3;
}

.header-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 14px 28px;
  border-top: 1px solid var(--border);
}

.header-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--ink);
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--gold-dark);
}

.header-nav .nav-cta {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 8px 18px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.header-nav .nav-cta:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.burger {
  grid-column: 1;
  width: 28px;
  height: 20px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s, top 0.25s;
}

.burger span:first-child { top: 4px; }
.burger span:last-child { top: 16px; }

.burger.open span:first-child {
  top: 10px;
  transform: rotate(45deg);
}

.burger.open span:last-child {
  top: 10px;
  transform: rotate(-45deg);
}

.mega-nav {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  transition: max-height 0.3s ease;
}

.mega-nav.open {
  max-height: 400px;
  border-top: 1px solid var(--border);
}

.mega-nav a {
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.mega-nav .btn {
  margin: 20px 28px;
}

/* Hero */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 28px 56px;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0.25) 0%, rgba(20,16,12,0.15) 40%, rgba(20,16,12,0.65) 100%);
  z-index: 1;
}

.hero-eyebrow,
.hero-bottom {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-bottom h1 {
  font-size: 2.1rem;
  color: var(--white);
  margin-bottom: 10px;
  max-width: 520px;
}

.hero-location {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

/* Lede */
.lede {
  padding: 64px 0;
  text-align: center;
}

.lede p {
  max-width: 640px;
  margin: 0 auto 18px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

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

/* Split block (alternating text sections) */
.split-block {
  background: var(--bg-alt);
  padding: 64px 28px;
  width: 100%;
  text-align: center;
}

.split-inner {
  max-width: 640px;
  margin: 0 auto;
}

.split-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 14px;
}

.split-block h2 {
  font-size: 1.8rem;
}

.split-block .divider {
  margin-left: auto;
  margin-right: auto;
}

.split-block p {
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.split-block p:last-child {
  margin-bottom: 0;
}

/* Founder */
.founder {
  display: grid;
  grid-template-columns: 1fr;
}

.founder-text {
  padding: 64px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-text h2 {
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.founder-role {
  color: var(--gold-dark);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.founder-text p {
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.founder-text p:last-child {
  margin-bottom: 0;
}

.founder-photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  margin: 0 auto;
  overflow: hidden;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

@media (min-width: 860px) {
  .founder {
    grid-template-columns: 1fr 1fr;
  }
  .founder-text {
    padding: 64px 64px;
  }
  .founder-photo {
    max-width: 460px;
    align-self: center;
  }
}

/* Showcase slideshow */
.showcase {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 320px;
  overflow: hidden;
  background: var(--ink);
}

.showcase-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: showcase-fade 20s infinite;
}

.showcase-img:nth-child(1) { animation-delay: 0s; }
.showcase-img:nth-child(2) { animation-delay: 5s; }
.showcase-img:nth-child(3) { animation-delay: 10s; }
.showcase-img:nth-child(4) { animation-delay: 15s; }

@keyframes showcase-fade {
  0% { opacity: 0; }
  4% { opacity: 1; }
  23% { opacity: 1; }
  28% { opacity: 0; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-img {
    animation: none;
  }
  .showcase-img:first-child {
    opacity: 1;
  }
}

/* Services */
.services {
  padding: 80px 0 60px;
  text-align: center;
}

.section-title {
  font-size: 1.9rem;
  max-width: 640px;
  margin: 0 auto 14px;
}

.section-subtitle {
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 28px;
}

.tag-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.tag {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 10px 18px;
  color: var(--ink-soft);
}

.services-note {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px 24px;
  text-align: left;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  box-shadow: 0 14px 28px rgba(26,20,20,0.1);
  transform: translateY(-3px);
}

.service-card[open] {
  border-color: var(--gold);
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card summary {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
}

.service-card summary::-webkit-details-marker {
  display: none;
}

.service-photo {
  position: relative;
  display: block;
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: var(--bg-alt);
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-photo img {
  transform: scale(1.08);
}

.service-card-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  min-height: 66px;
  box-sizing: border-box;
}

.service-title {
  flex: 1;
  color: var(--ink);
  font-size: 0.95rem;
}

.service-chevron {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.2s;
}

.service-card[open] .service-chevron {
  transform: rotate(45deg);
}

.service-card p {
  color: var(--ink-soft);
  padding: 0 18px 20px;
  margin: 0;
  font-size: 0.92rem;
}

/* Practical infos */
.practical {
  background: var(--bg-alt);
  padding: 80px 0;
  text-align: center;
}

.infos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 40px;
  border: 1px solid var(--border);
}

@media (min-width: 640px) {
  .infos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  background: var(--bg-alt);
  padding: 40px 28px;
}

.info-card h3 {
  font-size: 1.15rem;
}

.info-card p {
  color: var(--ink-soft);
}

.info-highlight {
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--ink);
}

.link-map {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold-dark);
  font-size: 0.9rem;
}

.link-map:hover {
  text-decoration: underline;
}

.info-phone-hours {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.info-card .btn {
  margin-top: 16px;
}

/* Final CTA */
.cta-final {
  padding: 90px 28px;
  text-align: center;
  background: var(--ink);
  color: var(--white);
}

.cta-final h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-final p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

/* Footer */
.site-footer {
  padding: 56px 28px 28px;
  text-align: center;
  background: var(--bg);
}

.footer-mark {
  width: 44px;
  height: auto;
  margin-bottom: 16px;
  opacity: 0.85;
}

.footer-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.footer-detail {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.copyright {
  font-size: 0.8rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Responsive */
@media (min-width: 720px) {
  .hero-bottom h1 {
    font-size: 2.8rem;
  }

  .split-block {
    padding: 90px 28px;
  }

  .split-inner {
    max-width: 720px;
  }

  .section-title {
    font-size: 2.3rem;
  }
}

@media (min-width: 600px) {
  .header-top {
    grid-template-columns: 40px 1fr 40px;
    padding: 26px 28px 18px;
  }

  .header-nav {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .burger,
  .mega-nav {
    display: none;
  }
}

@media (min-width: 860px) {
  .brand-big {
    font-size: 2rem;
    gap: 16px;
  }

  .header-logo {
    width: 60px;
  }
}
