@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-400.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-500.ttf") format("truetype");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-600.ttf") format("truetype");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-700.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/instrument-400.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/instrument-500.ttf") format("truetype");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/instrument-600.ttf") format("truetype");
  font-weight: 600; font-style: normal; font-display: swap;
}

:root {
  --ink: #14171a;
  --graphite: #1e2328;
  --graphite-2: #2a3037;
  --steel: #5d666e;
  --steel-2: #868f97;
  --line: #d9dde0;
  --line-soft: #e7eaec;
  --mist: #eef0f2;
  --paper: #f6f7f8;
  --white: #ffffff;
  --brass: #a9763c;
  --brass-deep: #8f6230;
  --brass-soft: #c79a5f;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1180px;
  --nav-h: 72px;
  --r: 4px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

::selection { background: var(--brass); color: #fff; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap { width: min(100% - 44px, var(--wrap)); margin-inline: auto; }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: var(--r);
  z-index: 200; transition: top .18s var(--ease);
  font-weight: 500; font-size: .92rem;
}
.skip-link:focus { top: 12px; }

/* ---------- Typography helpers ---------- */

.overline {
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brass-deep);
  margin: 0 0 18px;
  display: flex; align-items: center; gap: 12px;
}
.overline .idx {
  font-family: var(--serif);
  font-size: .84rem;
  letter-spacing: normal;
  color: var(--steel-2);
  padding-right: 12px;
  border-right: 1px solid var(--line);
}

.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.75rem, 1rem + 2.6vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 18px;
}
.section__intro {
  color: var(--steel);
  font-size: 1.05rem;
  max-width: 56ch;
  margin: 0;
}
.section__head { max-width: 62ch; margin-bottom: 52px; }

.link-underline {
  color: var(--brass-deep);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid color-mix(in srgb, var(--brass) 40%, transparent);
  padding-bottom: 1px;
  transition: border-color .2s var(--ease);
}
.link-underline:hover { border-color: var(--brass); }

/* ---------- Buttons ---------- */

.btn {
  --pad-y: 13px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: var(--pad-y) 22px;
  font-family: var(--sans);
  font-size: .96rem;
  font-weight: 600;
  letter-spacing: .005em;
  border-radius: var(--r);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease),
              border-color .18s var(--ease), color .18s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--brass {
  background: var(--brass);
  color: #fff;
  border-color: var(--brass);
}
.btn--brass:hover { background: var(--brass-deep); border-color: var(--brass-deep); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: color-mix(in srgb, var(--ink) 22%, transparent);
}
.btn--ghost:hover { border-color: var(--ink); background: color-mix(in srgb, var(--ink) 4%, transparent); }

.btn--phone {
  background: color-mix(in srgb, var(--ink) 6%, transparent);
  color: var(--ink);
  border-color: var(--line);
  font-variant-numeric: tabular-nums;
}
.btn--phone:hover { border-color: var(--brass); color: var(--brass-deep); }

/* ---------- Nav ---------- */

.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(1.2) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.nav.is-stuck {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
}
.nav__inner {
  height: var(--nav-h);
  display: flex; align-items: center; gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand__mark {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
}
.brand__type { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: .01em;
}
.brand__tag {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--steel-2);
  margin-top: 2px;
}

.nav__links { margin-left: auto; display: flex; gap: 28px; }
.nav__links a {
  text-decoration: none;
  color: var(--steel);
  font-size: .95rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color .18s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px; background: var(--brass);
  transition: width .22s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { margin-left: 4px; }

/* ---------- Hero ---------- */

.hero { position: relative; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(15,18,21,.95) 0%, rgba(15,18,21,.82) 48%, rgba(15,18,21,.52) 80%, rgba(15,18,21,.14) 100%),
    linear-gradient(0deg, rgba(15,18,21,.6) 0%, rgba(15,18,21,0) 34%);
}

.hero__inner {
  padding-top: clamp(64px, 12vh, 130px);
  padding-bottom: clamp(56px, 10vh, 110px);
  max-width: 720px;
  color: #f3f4f5;
}
.hero__overline { color: var(--brass-soft); }
.hero__overline::before {
  content: ""; width: 34px; height: 1px; background: var(--brass-soft);
  display: inline-block; opacity: .8;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.3rem, 1.1rem + 4.4vw, 4.15rem);
  line-height: 1.03;
  letter-spacing: -.018em;
  margin: 0 0 24px;
  color: #fff;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--brass-soft);
}
.hero__lead {
  font-size: clamp(1.02rem, .95rem + .35vw, 1.2rem);
  color: #d5d8db;
  max-width: 54ch;
  margin: 0 0 34px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero__actions .btn--ghost { color: #fff; border-color: rgba(255,255,255,.34); }
.hero__actions .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.hero__trust {
  list-style: none; margin: 0; padding: 26px 0 0;
  border-top: 1px solid rgba(255,255,255,.16);
  display: flex; flex-wrap: wrap; gap: 14px 34px;
  font-size: .92rem; color: #c6cace;
}
.hero__trust strong { color: #fff; font-weight: 600; }
.hero__trust li { display: inline-flex; align-items: center; gap: 9px; }
.stars { color: var(--brass-soft); letter-spacing: .06em; font-size: .95rem; }

/* ---------- Section rhythm ---------- */

.section { padding: clamp(64px, 9vw, 112px) 0; }
.services { background: var(--white); border-bottom: 1px solid var(--line-soft); }
.why { background: var(--paper); }
.gallery { background: var(--graphite); color: #eceef0; }
.reviews { background: var(--white); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.area { background: var(--paper); }
.contact { background: var(--white); border-top: 1px solid var(--line-soft); }

/* ---------- Services grid ---------- */

.grid { display: grid; gap: 22px; }
.grid--services { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 26px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: var(--brass);
  transform: scaleX(0); transform-origin: left;
  transition: transform .34s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--brass) 40%, var(--line));
  box-shadow: 0 18px 40px -26px rgba(20,23,26,.5);
}
.card:hover::before { transform: scaleX(1); }
.card__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  color: var(--brass-deep);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 22px;
  background: var(--paper);
}
.card__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.24rem;
  margin: 0 0 10px;
}
.card p { margin: 0; color: var(--steel); font-size: .96rem; }

/* ---------- Why ---------- */

.grid--why { grid-template-columns: repeat(2, 1fr); gap: 0; }
.why__item {
  padding: 34px 34px 34px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.grid--why .why__item:nth-child(odd) { padding-right: 48px; border-right: 1px solid var(--line); padding-left: 0; }
.grid--why .why__item:nth-child(even) { padding-left: 48px; }
.why__num {
  font-family: var(--serif);
  font-size: .9rem;
  color: var(--brass);
  display: block;
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.why__item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0 0 10px;
  letter-spacing: -.01em;
}
.why__item p { margin: 0; color: var(--steel); }

/* ---------- Gallery / Carousel ---------- */

.gallery .section__title { color: #fff; }
.gallery .overline { color: var(--brass-soft); }
.gallery .overline .idx { color: var(--steel-2); border-color: rgba(255,255,255,.2); }
.gallery .section__intro { color: #aab1b7; }

.carousel {
  position: relative;
  width: min(100% - 44px, 1320px);
  margin: 44px auto 0;
}
.carousel:focus-visible { outline: 2px solid var(--brass-soft); outline-offset: 8px; }

.carousel__viewport {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  background: var(--ink);
}
.carousel__track {
  display: flex;
  list-style: none; margin: 0; padding: 0;
  transition: transform .55s var(--ease);
  will-change: transform;
}
.carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
}
.shot { margin: 0; position: relative; }
.shot img {
  width: 100%;
  aspect-ratio: 1184 / 864;
  object-fit: cover;
  background: linear-gradient(135deg, #23282d, #14171a);
}
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 42px 26px 22px;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 500;
  background: linear-gradient(0deg, rgba(15,18,21,.9) 0%, rgba(15,18,21,.4) 55%, rgba(15,18,21,0) 100%);
  display: flex; align-items: baseline; gap: 14px;
}
.shot__no {
  font-family: var(--serif);
  color: var(--brass-soft);
  font-size: .95rem;
  letter-spacing: .04em;
  flex: none;
}

.carousel__btn {
  position: absolute; top: calc(50% - 46px);
  transform: translateY(-50%);
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 10px 26px -12px rgba(0,0,0,.6);
  transition: background .18s var(--ease), transform .18s var(--ease);
}
.carousel__btn:hover { background: #fff; }
.carousel__btn:active { transform: translateY(-50%) scale(.94); }
.carousel__btn--prev { left: -18px; }
.carousel__btn--next { right: -18px; }

.carousel__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; margin-top: 22px;
  flex-wrap: wrap;
}
.carousel__counter {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: #cfd4d8;
  margin: 0;
  font-variant-numeric: tabular-nums;
}
.carousel__counter [data-carousel-current] { color: #fff; }
.carousel__sep { color: var(--steel-2); margin: 0 4px; }

.carousel__dots { display: flex; gap: 9px; }
.carousel__dot {
  width: 9px; height: 9px; padding: 0;
  border: 1px solid rgba(255,255,255,.32);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.carousel__dot:hover { border-color: var(--brass-soft); }
.carousel__dot[aria-selected="true"] {
  background: var(--brass);
  border-color: var(--brass);
  transform: scale(1.15);
}

/* ---------- Reviews ---------- */

.grid--reviews { grid-template-columns: repeat(3, 1fr); }
.review {
  margin: 0;
  padding: 32px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  display: flex; flex-direction: column;
}
.review__stars { color: var(--brass); letter-spacing: .08em; margin-bottom: 16px; font-size: 1rem; }
.review blockquote {
  margin: 0 0 22px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--graphite);
  quotes: none;
}
.review figcaption { margin-top: auto; }
.review__name {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.02rem;
}
.review__meta { display: block; font-size: .82rem; color: var(--steel-2); margin-top: 3px; }

/* ---------- Area ---------- */

.area__inner {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center;
}
.area__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.area__list li {
  background: var(--white);
  padding: 18px 20px;
  font-weight: 500;
  font-size: .98rem;
  display: flex; align-items: center; gap: 10px;
}
.area__list li::before {
  content: ""; width: 6px; height: 6px; background: var(--brass); border-radius: 50%; flex: none;
}

/* ---------- Contact ---------- */

.contact__inner {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: start;
}
.contact__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.contact__details {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.contact__details > div { background: var(--white); padding: 24px 24px; }
.contact__details dt {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brass-deep); font-weight: 600; margin-bottom: 8px;
}
.contact__details dd { margin: 0; color: var(--graphite); line-height: 1.55; }
.contact__details a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line); }
.contact__details a:hover { border-color: var(--brass); color: var(--brass-deep); }

/* ---------- Footer ---------- */

.footer {
  background: var(--ink);
  color: #b4bbc0;
  padding: 54px 0 40px;
}
.footer__inner {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 28px; flex-wrap: wrap;
}
.footer .brand__name { color: #fff; font-size: 1.2rem; }
.footer__brand p { margin: 8px 0 0; font-size: .9rem; color: #8b9299; }
.footer__meta { text-align: right; }
.footer__meta p { margin: 0; font-size: .88rem; }
.footer__credit { margin-top: 8px !important; color: #8b9299; }
.footer__credit a {
  color: var(--brass-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease);
}
.footer__credit a:hover { border-color: var(--brass-soft); }

/* ---------- Mobile call-bar ---------- */

.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none;
  align-items: center; justify-content: center; gap: 10px;
  padding: 15px;
  background: var(--brass);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 -8px 24px -12px rgba(0,0,0,.5);
}

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.card.reveal { transition-property: opacity, transform; }

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .grid--services { grid-template-columns: repeat(2, 1fr); }
  .nav__links { display: none; }
}

@media (max-width: 880px) {
  .area__inner { grid-template-columns: 1fr; gap: 30px; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .brand__tag { display: none; }
  .nav__cta span { display: none; }
  .nav__cta { padding: 11px 13px; }
  .nav__cta svg { margin: 0; }

  .grid--why { grid-template-columns: 1fr; }
  .grid--why .why__item:nth-child(odd) { padding-right: 0; border-right: none; }
  .grid--why .why__item:nth-child(even) { padding-left: 0; }
  .why__item { padding: 26px 0; }

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

  .carousel__btn { width: 44px; height: 44px; top: calc(50% - 40px); }
  .carousel__btn--prev { left: 8px; }
  .carousel__btn--next { right: 8px; }
  .shot figcaption { font-size: .92rem; padding: 34px 18px 18px; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__meta { text-align: left; }

  .callbar { display: flex; }
  body { padding-bottom: 56px; }
  .nav__cta { display: none; }
}

@media (max-width: 480px) {
  .grid--services { grid-template-columns: 1fr; }
  .contact__details { grid-template-columns: 1fr; }
  .hero__trust { gap: 10px 22px; font-size: .86rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .carousel__track { transition: none; }
  .card, .btn, .carousel__btn, .nav__links a::after { transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; }
}
