/* ====== Tokens ====== */
:root {
  --bg: #0e0e10;
  --bg-2: #161618;
  --ink: #111114;
  --ink-2: #2a2a2e;
  --paper: #f7f5f1;
  --paper-2: #ffffff;
  --muted: #6b6b72;
  --line: #e5e2dc;
  --accent: #E85A4F;
  --accent-2: #c94539;
  --gold: #c9a96a;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.04);
  --shadow-md: 0 10px 30px rgba(0,0,0,.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover { background: var(--accent-2); border-color: var(--accent-2); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn--ghost-dark {
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost-dark:hover { background: var(--ink); color: #fff; }

/* ====== Navigation ====== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14,14,16,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.brand__logo {
  width: 38px;
  height: 38px;
  display: inline-block;
  flex-shrink: 0;
}
.brand__logo svg { width: 100%; height: 100%; display: block; }
.brand__logo--lg { width: 56px; height: 56px; }
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.18em;
  color: #fff;
}
.brand__sub {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-top: 4px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  padding: 10px 16px;
  font-weight: 500;
  font-size: 14.5px;
  color: rgba(255,255,255,0.78);
  border-radius: 999px;
  transition: color .15s, background .15s;
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav__link--cta {
  background: var(--accent);
  color: #fff;
  margin-left: 6px;
}
.nav__link--cta:hover { background: var(--accent-2); color: #fff; }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform .2s, opacity .2s;
}

/* ====== Hero ====== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) blur(2px) saturate(0.85);
  transform: scale(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(232,90,79,0.22), transparent 55%),
    linear-gradient(120deg, rgba(14,14,16,0.85) 0%, rgba(14,14,16,0.55) 60%, rgba(14,14,16,0.85) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 24px 100px;
  width: 100%;
}
.hero__eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
}
.hero__title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
  max-width: 880px;
}
.hero__title span { color: var(--accent); font-style: italic; }
.hero__sub {
  font-size: 18px;
  line-height: 1.6;
  max-width: 640px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 36px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ====== Sections ====== */
.section {
  padding: 100px 0;
}
.section--light { background: var(--paper); }
.section--dark { background: var(--bg); color: #fff; }

.section__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section__head h2 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  margin: 8px 0 16px;
  letter-spacing: 0.01em;
}
.section__lede {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}
.section--dark .section__lede { color: rgba(255,255,255,0.7); }

.kicker {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}
.kicker--light { color: var(--accent); }

/* ====== About ====== */
.about-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-text p { font-size: 17px; margin: 0 0 18px; color: #2a2a2e; }
.about-emph {
  font-family: 'Cinzel', serif;
  font-style: italic;
  font-size: 19px !important;
  color: var(--accent) !important;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-top: 28px !important;
}
.about-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}
.about-card__row {
  display: flex;
  flex-direction: column;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.about-card__row:last-child { border-bottom: 0; }
.about-card__label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.about-card__value {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
a.about-card__value:hover { color: var(--accent); }

/* ====== Services ====== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.service:hover {
  transform: translateY(-3px);
  border-color: rgba(232,90,79,0.4);
  background: rgba(255,255,255,0.06);
}
.service h3 {
  font-family: 'Cinzel', serif;
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: 0.04em;
  color: #fff;
}
.service h3::before {
  content: "";
  display: inline-block;
  width: 18px; height: 18px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  margin-right: 12px;
  vertical-align: -3px;
}
.service p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 15.5px;
  line-height: 1.65;
}

/* ====== Gallery ====== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
.gallery--four .gallery__item--wide { grid-column: span 2; grid-row: span 2; }
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: var(--ink);
  cursor: zoom-in;
  border: 1px solid var(--line);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, opacity .3s;
  image-rendering: -webkit-optimize-contrast;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5));
  opacity: 0;
  transition: opacity .25s;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item--wide { grid-column: span 2; grid-row: span 2; }
.gallery__item--tall { grid-row: span 2; }

.gallery__more {
  text-align: center;
  margin-top: 32px;
  color: var(--muted);
  font-size: 15px;
}
.gallery__more a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

/* ====== Footer ====== */
.footer {
  background: var(--bg);
  color: #fff;
  padding-top: 80px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  padding-bottom: 60px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__brandtext {
  display: flex;
  flex-direction: column;
  margin-top: 4px;
}
.footer__tag {
  font-family: 'Cinzel', serif;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin: 18px 0 0;
  max-width: 380px;
  line-height: 1.5;
}
.footer__contact h3 {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}
.footer__lede {
  color: rgba(255,255,255,0.7);
  margin: 0 0 28px;
  font-size: 16px;
  max-width: 480px;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 32px;
}
.footer__list li {
  display: flex;
  flex-direction: column;
}
.footer__label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.footer__val {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
a.footer__val:hover { color: var(--accent); }

.footer__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__cta .btn--ghost-dark {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.footer__cta .btn--ghost-dark:hover { background: #fff; color: var(--ink); border-color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
}
.footer__totop:hover { color: var(--accent); }

/* ====== Lightbox ====== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--accent); border-color: var(--accent); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  background: rgba(0,0,0,0.5);
  padding: 8px 18px;
  border-radius: 999px;
}

/* ====== Responsive ====== */
@media (max-width: 900px) {
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s, transform .2s;
  }
  .nav__menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav__link { padding: 14px 18px; }
  .nav__link--cta { margin: 4px 0 0; text-align: center; }
  .nav__toggle { display: block; }

  .brand__name { font-size: 13px; letter-spacing: 0.16em; }
  .brand__sub { font-size: 7.5px; }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-card { position: static; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery__item--wide { grid-column: span 2; grid-row: span 1; }
  .gallery__item--tall { grid-row: span 1; }

  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__list { grid-template-columns: 1fr; }

  .section { padding: 70px 0; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero__inner { padding: 90px 24px 70px; }
  .hero__cta .btn { flex: 1; }
  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}
