:root {
  --ink: #111;
  --ivory: #f5f5f5;
  --paper: #fff;
  --muted: #666;
  --line: #e5e5e5;
  --line-dark: rgba(255,255,255,0.22);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 1.125rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }

.site-header {
  background: #000;
  color: #fff;
}
.header-brand-block {
  text-align: center;
  padding: 2rem 1.25rem 1.4rem;
}
.brand { display: flex; flex-direction: column; align-items: center; color: #fff; }
.brand-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.brand-amp { color: #fff; font-family: var(--serif); font-style: italic; font-size: 1.1rem; margin: 0.15rem 0; }
.tagline {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line-dark);
  padding: 0 1.5rem;
  min-height: 3.25rem;
  max-width: 100%;
}
.header-phone {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: #fff;
  flex-shrink: 0;
  line-height: 1;
  padding: 0.9rem 0;
}
.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0 1.5rem;
}
.header-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  padding: 1rem 0;
  line-height: 1;
}
.header-nav a[aria-current="page"] {
  text-decoration: none;
  box-shadow: inset 0 -2px 0 #fff;
}
.menu-btn {
  display: none;
  background: none;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.55rem 0.85rem;
  min-height: 44px;
  min-width: 44px;
  font: inherit;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
  cursor: pointer;
}
.mobile-nav { background: var(--ink); display: flex; flex-direction: column; padding: 0.4rem 1.5rem 1.1rem; }
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a {
  color: #fff;
  padding: 0.95rem 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  color: #fff;
  background: #000;
}
.hero-photo {
  position: absolute;
  inset: 0;
  margin: 0;
  line-height: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 38%;
  display: block;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.58) 42%, rgba(10,10,10,0.28) 100%),
    linear-gradient(135deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.2) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 6rem clamp(1.75rem, 5vw, 4.5rem);
  max-width: min(58rem, 74vw);
  margin: 0;
  margin-right: auto;
  width: auto;
  text-align: left;
  align-self: center;
}
.hero-copy h1 {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: none;
  margin-bottom: 1.25rem;
  text-align: left;
  text-shadow: 0 2px 24px rgba(0,0,0,0.65);
}
.hero-kicker {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  margin-bottom: 1rem;
}
.hero-copy p,
.hero-subtitle {
  max-width: 42rem;
  margin-bottom: 2rem;
  font-size: 1.35rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.94);
  text-shadow: 0 1px 16px rgba(0,0,0,0.75);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.95rem 1.55rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid #fff;
}
.btn-gold { background: #fff; color: #111; border-color: #fff; }
.btn-ghost { color: #fff; }

.trust {
  background: #000;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.trust div {
  padding: 1.2rem 0.85rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-right: 1px solid var(--line-dark);
}
.trust div:last-child { border-right: 0; }

.section { padding: 5rem 1.5rem; }
.section-ivory { background: var(--ivory); }
.section-block { max-width: 1120px; margin: 0 auto; }
.section h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}
.eyebrow {
  display: block;
  text-align: center;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: #111;
  margin-bottom: 0.7rem;
}
.page-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
  padding: 3.5rem 1.5rem 0;
}
.section-block .page-title { padding: 0; }
.lede { text-align: center; color: var(--muted); max-width: 42rem; margin: 0 auto 2.5rem; font-size: 1.125rem; }
.about { max-width: 820px; margin: 0 auto; font-size: 1.125rem; }
.about p { margin-bottom: 1.1rem; color: #333; }
.about ul { margin: 1.2rem 0 0; list-style: none; }
.about li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  font-size: 1.125rem;
  color: #333;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 1120px;
  margin: 2rem auto 0;
}
.section-block .photo-grid,
.section-block .reviews {
  max-width: none;
  width: 100%;
}
.section-block .reviews { margin-top: 2rem; }
.photo-grid-item {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #eee;
}
.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  max-width: 1120px;
  margin: 0 auto;
}
.rating-card, .review {
  background: #fff;
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--line);
}
.rating-card { text-align: center; }
.rating-num {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--ink);
}
.stars { color: #111; letter-spacing: 0.15em; margin: 0.4rem 0; }
.review-stars { margin-bottom: 0.7rem; }
.review h3, .review-name { font-size: 0.85rem; letter-spacing: 0.08em; margin: 0.4rem 0 0.3rem; }
.review p, .review-text { font-size: 1.125rem; color: #444; }
.review-date { font-size: 0.75rem; color: var(--muted); font-style: normal; font-family: var(--sans); }

.service-grid, .sectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
}
.service-card, .sector {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.6rem 1.35rem;
}
.service-card h2, .sector {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.55rem;
  text-align: left;
  margin-bottom: 0.8rem;
}
.sector { text-align: center; font-weight: 500; margin: 0; }
.service-card ul { list-style: none; }
.service-card li { padding: 0.32rem 0; border-bottom: 1px solid #eee; font-size: 0.9rem; color: #444; }

.btn-outline {
  color: #111;
  border-color: #111;
  background: transparent;
}

.contact-map-hero {
  height: min(52vh, 420px);
  background: #eee;
  overflow: hidden;
  position: relative;
}
.contact-map-hero iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.35) contrast(1.05);
}
.contact-page .btn-gold {
  background: #111;
  color: #fff;
  border-color: #111;
}
.contact-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}
.contact-intro {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.75rem;
}
.contact-intro h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 0.75rem;
}
.contact-intro p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-tile {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.6rem 1.5rem;
  min-height: 100%;
}
.contact-tile-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #111;
}
.contact-tile-value {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 3.4vw, 1.35rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-tile-hint {
  margin-top: auto;
  padding-top: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.hours-list {
  list-style: none;
  margin-top: 0.35rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}
.hours-list li span:last-child { color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}
.map { width: 100%; min-height: 360px; border: 0; filter: grayscale(0.25); }
.offer {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.offer h2 { font-family: var(--serif); font-style: italic; font-size: 2.2rem; text-align: left; }
.offer img { width: 100%; height: 280px; object-fit: cover; }

.blog-hero {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 3rem 1.5rem 2.5rem;
}
.blog-hero h1 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  margin-bottom: 0.6rem;
}
.blog-hero p { max-width: 36rem; margin: 0 auto; color: rgba(255,255,255,0.75); }
.blog-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.65);
}
.blog-kicker a:hover { text-decoration: underline; }
.blog-list {
  display: grid;
  gap: 1.25rem;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .blog-list { grid-template-columns: 1fr 1fr; }
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  color: inherit;
  height: 100%;
  overflow: hidden;
}
.blog-card:hover { border-color: #111; }
.blog-card:hover .blog-card-link { text-decoration: underline; }
.blog-card-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  background: #111;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.blog-card-body { padding: 1.1rem 1.25rem 1.25rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.blog-card-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.blog-card-excerpt {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}
.blog-card-link { margin-top: auto; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
.blog-article-inner { max-width: 720px; margin: 0 auto; }
.prose p { margin-bottom: 1rem; color: #333; }
.blog-gallery { list-style: none; margin: 2rem 0 0; }
.blog-shot { margin: 0; border: 1px solid var(--line); background: #fff; }
.blog-shot-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  height: 320px;
}
.blog-shot img { max-width: 100%; max-height: 320px; width: auto; height: auto; object-fit: contain; }
.blog-shot figcaption { padding: 0.85rem 1rem 1rem; font-size: 0.85rem; color: var(--muted); }
.blog-cta { margin-top: 2.5rem; padding: 1.5rem; background: var(--ivory); }
.blog-cta p { margin-bottom: 1rem; color: var(--muted); }
.btn-on-light { background: #111; color: #fff; border-color: #111; }
.svc-work-link { margin-top: 1rem; font-size: 0.875rem; }

.site-footer {
  background: #000;
  color: #ccc;
  text-align: center;
  padding: 2.2rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
.site-footer p + p { margin-top: 0.45rem; color: #fff; }
.site-footer a { color: #fff; }

.faq-list {
  max-width: 40rem;
  margin: 2rem auto 0;
  text-align: left;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0.2rem 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 500;
  padding: 0.85rem 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.65;
}
.commercial-copy {
  max-width: 40rem;
  margin: 0 auto;
  text-align: left;
}
.commercial-copy h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  text-align: left;
  margin: 1.75rem 0 0.5rem;
}
.commercial-copy p { color: var(--muted); margin-bottom: 0.85rem; }

@media (min-width: 1081px) {
  .hero-copy {
    min-width: min(44rem, 68vw);
  }
}

@media (max-width: 1080px) {
  .header-nav { display: none; }
  .menu-btn { display: block; }
  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    place-items: unset;
  }
  .hero-photo {
    position: relative;
    inset: auto;
  }
  .hero-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 35%;
    display: block;
  }
  .hero-photo::after { content: none; }
  .hero-copy {
    background: #000;
    padding: 1.6rem 1.15rem 2rem;
    max-width: none;
    width: 100%;
    margin: 0;
    align-self: stretch;
    text-align: left;
  }
  .hero-copy h1 {
    max-width: none;
    text-shadow: none;
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 0.7rem;
  }
  .hero-kicker { font-size: 0.72rem; margin-bottom: 0.65rem; }
  .hero-copy p,
  .hero-subtitle {
    text-shadow: none;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.55;
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}
@media (max-width: 860px) {
  body { font-size: 1rem; }
  .about { font-size: 1rem; }
  .about li { font-size: 1rem; }
  .lede { font-size: 1rem; }
  .btn { font-size: 0.78rem; padding: 0.8rem 1.2rem; }
  .trust, .photo-grid, .reviews, .service-grid, .sectors, .contact-grid, .offer { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .section { padding: 3.25rem 1.15rem; }
  .header-brand-block { padding: 1.4rem 1rem 1.1rem; }
  .header-bar { padding: 0 1rem; }
  .header-phone { letter-spacing: 0.06em; font-size: 0.78rem; }
  .contact-map-hero { height: 240px; }
  .contact-page { padding: 2.4rem 1.15rem 3.5rem; }
  .btn { min-height: 44px; justify-content: center; }
}
@media (max-width: 600px) {
  .reviews, .service-grid, .sectors, .contact-grid, .contact-cards, .offer, .trust, .blog-list { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .trust div { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .trust div:last-child { border-bottom: 0; }
  .hours-list li { font-size: 0.85rem; }
}
