:root {
  --bg: #120d0a;
  --bg-soft: #1b1410;
  --panel: rgba(33, 24, 19, 0.82);
  --panel-strong: #211711;
  --line: rgba(201, 163, 104, 0.2);
  --line-strong: rgba(201, 163, 104, 0.42);
  --text: #f5eee6;
  --muted: rgba(245, 238, 230, 0.74);
  --gold: #d6b17a;
  --gold-deep: #9f7440;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top, rgba(124, 84, 46, 0.18), transparent 34%),
    linear-gradient(180deg, #0d0907 0%, #140f0c 35%, #120d0a 100%);
  color: var(--text);
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

main,
section,
header,
footer {
  position: relative;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(11, 9, 8, 0.88), rgba(11, 9, 8, 0.48));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark__monogram {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: radial-gradient(circle at 30% 30%, rgba(214, 177, 122, 0.28), rgba(214, 177, 122, 0.08));
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}

.brand-mark__text {
  display: grid;
  gap: 2px;
}

.brand-mark__text strong {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark__text small {
  color: var(--muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.text-link {
  color: var(--muted);
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, #e3c392 0%, #bd8748 100%);
  color: #17110d;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 18px 30px rgba(121, 76, 34, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 22px 40px rgba(121, 76, 34, 0.32);
}

.btn--ghost {
  min-height: 46px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: rgba(214, 177, 122, 0.18);
  box-shadow: none;
}

.btn--full {
  width: 100%;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  font-weight: 600;
}

.hero {
  min-height: calc(100svh - 82px);
  display: flex;
  align-items: stretch;
  overflow: clip;
}

.hero-background,
.hero-gradient {
  position: absolute;
  inset: 0;
}

.hero-background {
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.82) 0%, rgba(8, 7, 6, 0.62) 45%, rgba(8, 7, 6, 0.42) 100%),
    url('./e53da182-1088-4e6f-93d7-6773192a3ff3.png') center/cover no-repeat;
  transform: scale(1.02);
}

.hero-gradient {
  background:
    radial-gradient(circle at 75% 25%, rgba(214, 177, 122, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(18, 13, 10, 0.08) 0%, rgba(18, 13, 10, 0.72) 82%, var(--bg) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 48px;
  align-items: center;
  padding: 72px 0 56px;
}

.hero-copy h1,
.section h2 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  margin-top: 20px;
  max-width: 10.5ch;
  font-size: clamp(3.9rem, 8vw, 6.9rem);
  font-weight: 600;
}

.hero-copy h1 span {
  color: rgba(247, 236, 221, 0.9);
}

.hero-lead {
  max-width: 640px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.hero-highlights article,
.hero-floating-card,
.service-card,
.testimonial-card,
.contact-form,
.contact-intro,
.promise-list article {
  background: linear-gradient(180deg, rgba(35, 26, 20, 0.82), rgba(21, 16, 13, 0.88));
  border: 1px solid rgba(214, 177, 122, 0.12);
  box-shadow: var(--shadow);
}

.hero-highlights article {
  border-radius: var(--radius-sm);
  padding: 20px 20px 22px;
}

.hero-highlights strong,
.hero-floating-card strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.36rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-highlights span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-portrait-frame {
  position: relative;
  width: min(100%, 470px);
  border-radius: 240px 240px 24px 24px;
  overflow: hidden;
  border: 1px solid rgba(214, 177, 122, 0.26);
  background:
    radial-gradient(circle at top, rgba(214, 177, 122, 0.22), rgba(214, 177, 122, 0) 54%),
    rgba(26, 20, 17, 0.94);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}

.hero-portrait-frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 220px 220px 18px 18px;
  pointer-events: none;
}

.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.94) contrast(1.02);
}

.hero-floating-card {
  position: absolute;
  width: min(260px, 52vw);
  border-radius: 22px;
  padding: 20px;
  backdrop-filter: blur(14px);
}

.hero-floating-card--top {
  top: 14%;
  left: -5%;
}

.hero-floating-card--bottom {
  right: -2%;
  bottom: 9%;
}

.floating-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.trust-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.015);
}

.trust-bar__inner {
  padding: 18px 0;
}

.trust-bar p {
  color: rgba(245, 238, 230, 0.64);
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.section {
  padding: 110px 0;
}

.section--dark {
  background:
    radial-gradient(circle at top, rgba(214, 177, 122, 0.08), transparent 30%),
    #120d0a;
}

.section h2 {
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  max-width: 12ch;
  margin-top: 16px;
  font-weight: 600;
}

.section-copy p,
.section-heading p,
.promise-list p,
.service-card p,
.contact-intro p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.85;
}

.editorial-grid,
.promise-grid,
.contact-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  align-items: center;
}

.detail-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.detail-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid rgba(214, 177, 122, 0.14);
}

.detail-list span,
.service-index {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  line-height: 1;
}

.editorial-visuals {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: end;
}

.editorial-card,
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(214, 177, 122, 0.12);
  box-shadow: var(--shadow);
}

.editorial-card--large {
  min-height: 620px;
}

.editorial-card--small {
  min-height: 360px;
  transform: translateY(50px);
}

.editorial-card img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-heading {
  max-width: 820px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: end;
  max-width: 100%;
}

.service-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card,
.testimonial-card,
.contact-intro,
.contact-form,
.promise-list article {
  border-radius: var(--radius);
}

.service-card {
  padding: 30px;
}

.service-card h3,
.promise-list h3,
.contact-intro h2,
.testimonial-card span {
  font-family: 'Cormorant Garamond', serif;
}

.service-card h3,
.promise-list h3 {
  font-size: 2rem;
  margin: 18px 0 14px;
  font-weight: 600;
}

.gallery-tabs {
  display: inline-flex;
  gap: 12px;
  margin: 40px 0 26px;
  padding: 10px;
  border: 1px solid rgba(214, 177, 122, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.tab {
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  color: var(--muted);
  background: transparent;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.tab:hover {
  transform: translateY(-1px);
  color: var(--text);
}

.tab.active {
  color: #17110d;
  background: linear-gradient(135deg, #e3c392 0%, #bd8748 100%);
}

.gallery-panel {
  display: none;
}

.gallery-panel.active {
  display: block;
}

.gallery-composition {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 20px;
  grid-auto-rows: 215px;
}

.gallery-item--feature {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.promise-grid {
  align-items: start;
}

.promise-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.promise-list article {
  padding: 26px;
}

.testimonial-card {
  padding: 28px;
}

.testimonial-card p {
  font-size: 1.02rem;
}

.testimonial-card span {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  font-size: 1.2rem;
}

.section--contact {
  padding-bottom: 120px;
}

.contact-shell {
  align-items: stretch;
}

.contact-intro,
.contact-form {
  padding: 34px;
}

.contact-intro h2 {
  margin: 16px 0 18px;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1;
  font-weight: 600;
}

.contact-info {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-info p {
  display: flex;
  gap: 14px;
  align-items: center;
}

.contact-info i {
  color: var(--gold);
  width: 18px;
}

.contact-info a {
  color: var(--text);
  border-bottom: 1px solid rgba(214, 177, 122, 0.16);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form span {
  color: rgba(245, 238, 230, 0.82);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(214, 177, 122, 0.14);
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(245, 238, 230, 0.42);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(214, 177, 122, 0.38);
  box-shadow: 0 0 0 4px rgba(214, 177, 122, 0.08);
  background: rgba(255, 255, 255, 0.055);
}

.form-status {
  min-height: 1.4em;
  color: var(--muted);
}

.form-status.success {
  color: #9ae4a8;
}

.form-status.error {
  color: #ffb9b0;
}

.btn-loading {
  display: none;
}

@media (max-width: 1080px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .hero-grid,
  .editorial-grid,
  .promise-grid,
  .contact-shell,
  .section-heading--split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 56px;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 20px;
  }

  .hero-floating-card--top {
    left: 0;
  }

  .hero-floating-card--bottom {
    right: 0;
  }

  .editorial-visuals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-card--large,
  .editorial-card--small {
    min-height: 420px;
    transform: none;
  }

  .service-grid,
  .testimonial-grid,
  .promise-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 30px;
    padding: 34px 0 44px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
    max-width: 10ch;
  }

  .hero-actions,
  .hero-highlights,
  .service-grid,
  .testimonial-grid,
  .promise-list,
  .form-row,
  .editorial-visuals,
  .gallery-composition {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-highlights {
    margin-top: 34px;
  }

  .hero-portrait-frame {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-floating-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .section {
    padding: 84px 0;
  }

  .gallery-tabs {
    display: grid;
    width: 100%;
    border-radius: 24px;
  }

  .gallery-composition {
    grid-auto-rows: 220px;
  }

  .gallery-item--feature,
  .gallery-item--wide {
    grid-row: auto;
    grid-column: auto;
  }

  .contact-intro,
  .contact-form,
  .service-card,
  .testimonial-card,
  .promise-list article {
    padding: 24px;
  }
}
