:root {
  --black: #070707;
  --ink: #171717;
  --soft-black: #111111;
  --white: #ffffff;
  --milk: #f7f4ee;
  --line: rgba(214, 178, 94, 0.34);
  --gold: #d6b25e;
  --deep-gold: #a87922;
  --muted: #6f6b63;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 18px clamp(18px, 4vw, 64px) 12px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
}

.brand img {
  width: clamp(220px, 24vw, 360px);
  margin-inline: auto;
}

.header-bottom {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 48px);
}

.nav {
  display: flex;
  gap: clamp(16px, 2.5vw, 34px);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a,
.text-link {
  text-decoration: none;
}

.nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  color: var(--deep-gold);
  border-color: var(--gold);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 3px;
  font-weight: 800;
  text-decoration: none;
}

.header-cta,
.button-primary {
  color: var(--black);
  background: var(--gold);
}

.button-secondary {
  color: var(--white);
  border: 1px solid var(--gold);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 128px);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent 45%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 780px);
  min-height: calc(100vh - 128px);
  padding: clamp(64px, 8vw, 120px) clamp(20px, 6vw, 96px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--deep-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow,
.profile .eyebrow,
.contact .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.9rem);
  line-height: 0.92;
  font-weight: 500;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
  line-height: 1;
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin: 0;
  background: rgba(214, 178, 94, 0.45);
  border: 1px solid rgba(214, 178, 94, 0.42);
}

.hero-details div {
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
}

dt {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.intro,
.services,
.profile,
.gallery,
.contact {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 96px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: end;
  background: var(--milk);
}

.intro p:last-child,
.section-heading p,
.profile-copy p,
.contact p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.06);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  color: var(--white);
  background: var(--soft-black);
}

.profile-image {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(214, 178, 94, 0.28), rgba(255, 255, 255, 0.03));
}

.profile-image img {
  width: 100%;
  object-fit: cover;
}

.profile-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

.gallery {
  background: var(--milk);
}

.instagram-panel {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
  padding: clamp(22px, 4vw, 40px);
  color: var(--white);
  background: var(--black);
  border-left: 5px solid var(--gold);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.instagram-panel span {
  color: var(--gold);
  font-weight: 900;
}

.instagram-panel strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  text-decoration: none;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-grid a:hover img {
  transform: scale(1.04);
  opacity: 0.72;
}

.gallery-more span {
  position: absolute;
  inset: auto 14px 14px 14px;
  padding: 10px 12px;
  color: var(--black);
  background: var(--gold);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 480px);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
  color: var(--white);
  background: var(--black);
}

.contact-card {
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  color: var(--ink);
  border-top: 5px solid var(--gold);
}

.contact-card a,
.contact-card address,
.contact-card p {
  display: block;
  margin: 0 0 16px;
  color: var(--ink);
  font-style: normal;
  font-weight: 750;
  text-decoration: none;
}

.contact-card p {
  color: var(--muted);
  font-weight: 500;
}

.site-footer {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(20px, 6vw, 96px);
  color: rgba(255, 255, 255, 0.72);
  background: #000000;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 180px;
  filter: invert(1) grayscale(1) brightness(4);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.quick-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(7, 7, 7, 0.92);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.25);
}

.quick-contact a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: var(--black);
  background: var(--gold);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
  }

  .header-bottom,
  .nav {
    flex-wrap: wrap;
  }

  .hero-details,
  .intro,
  .profile,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    position: relative;
    gap: 12px;
    padding: 16px 16px 12px;
  }

  .brand img {
    width: min(86vw, 310px);
  }

  .header-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    justify-content: center;
    gap: 10px 18px;
    font-size: 0.76rem;
  }

  .header-cta {
    width: 100%;
    padding-inline: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 44px;
  }

  .hero-details,
  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .instagram-panel,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-contact {
    right: 0;
    bottom: 0;
    left: 0;
    justify-content: stretch;
    padding: 7px;
  }

  .quick-contact a {
    flex: 1;
    padding-inline: 8px;
  }

  body {
    padding-bottom: 62px;
  }
}
