:root {
  --ink: #171412;
  --muted: #6d625d;
  --paper: #fffaf5;
  --cream: #f4eadf;
  --clay: #b45f43;
  --sage: #6f7f66;
  --charcoal: #24201d;
  --line: rgba(23, 20, 18, 0.14);
  --shadow: 0 22px 60px rgba(36, 32, 29, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: white;
  background: linear-gradient(180deg, rgba(23, 20, 18, 0.78), rgba(23, 20, 18, 0.08));
}

.brand,
.nav-links,
.hero-actions,
.field-row,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
  font-family: Georgia, serif;
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.94rem;
}

.nav-cta,
.button {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.nav-cta {
  padding: 11px 18px;
  color: var(--ink);
  background: white;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 140px clamp(20px, 7vw, 96px) 86px;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 10, 9, 0.82), rgba(12, 10, 9, 0.42), rgba(12, 10, 9, 0.16)),
    linear-gradient(0deg, rgba(12, 10, 9, 0.72), transparent 46%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd5b9;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 9vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
}

.button.primary {
  color: white;
  background: var(--clay);
}

.button.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.button.dark {
  color: white;
  background: var(--charcoal);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.quick-strip div {
  padding: 24px clamp(20px, 4vw, 54px);
  background: var(--charcoal);
  color: white;
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
}

.section,
.split-section,
.appointment-section {
  padding: clamp(62px, 8vw, 110px) clamp(20px, 6vw, 84px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.team-list article {
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 8px 24px rgba(36, 32, 29, 0.08);
}

.service-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.service-card div {
  padding: 20px;
}

.service-card p,
.split-copy p,
.appointment-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.service-card span {
  display: inline-block;
  margin-top: 6px;
  color: var(--sage);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  background: var(--cream);
}

.split-copy {
  max-width: 480px;
}

.team-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.team-list img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.team-list h3,
.team-list span {
  display: block;
  padding-inline: 16px;
}

.team-list h3 {
  padding-top: 16px;
}

.team-list span {
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-section {
  background: white;
}

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 16px;
}

.gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.gallery-button {
  margin-top: 22px;
  color: white;
  background: var(--charcoal);
}

.page-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: 140px clamp(20px, 7vw, 96px) 74px;
  overflow: hidden;
}

.showcase-section {
  background: white;
}

.showcase-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.showcase-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--charcoal);
}

.showcase-card.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 736px;
}

.showcase-card.wide {
  grid-column: span 2;
}

.showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 17, 17, 0.78), rgba(17, 17, 17, 0.06) 58%);
}

.showcase-card div {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: white;
}

.showcase-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: #ffd5b9;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showcase-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.video-showcase {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(62px, 8vw, 110px) clamp(20px, 6vw, 84px);
  background: var(--cream);
}

.video-copy {
  max-width: 440px;
}

.video-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.video-showcase video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.client-strip {
  background: var(--paper);
}

.client-strip h2 {
  max-width: 760px;
}

.social-showcase-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.appointment-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 84px);
  background: var(--charcoal);
  color: white;
}

.appointment-copy {
  position: sticky;
  top: 92px;
  align-self: start;
}

.appointment-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.booking-summary {
  margin-top: 28px;
  padding: 20px;
  border-left: 4px solid var(--clay);
  background: rgba(255, 255, 255, 0.08);
  line-height: 1.6;
}

.appointment-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.field-row {
  gap: 16px;
}

label {
  display: grid;
  width: 100%;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdfa;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(180, 95, 67, 0.2);
  border-color: var(--clay);
}

.form-button {
  width: 100%;
  margin-top: 6px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--sage);
  font-weight: 900;
}

.footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 84px);
  background: #111;
  color: white;
}

.footer span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
}

.footer a {
  color: #ffd5b9;
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.quick-contact {
  position: fixed;
  z-index: 12;
  right: 18px;
  top: 50%;
  display: grid;
  gap: 18px;
  transform: translateY(-50%);
}

.quick-link {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.24);
  font-weight: 900;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  animation: contactPulse 2.6s ease-in-out infinite;
}

.quick-link svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: currentColor;
  transition: transform 180ms ease;
}

.quick-link::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid currentColor;
  opacity: 0.22;
}

.quick-link:hover,
.quick-link:focus-visible {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.32);
  filter: saturate(1.12);
}

.quick-link:hover svg,
.quick-link:focus-visible svg {
  transform: scale(1.12) rotate(-6deg);
}

.quick-link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.78);
  outline-offset: 4px;
}

.quick-link.whatsapp {
  background: #25d366;
}

.quick-link.call {
  background: var(--clay);
  animation-delay: 0.35s;
}

.quick-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .service-grid,
  .split-section,
  .appointment-section,
  .video-showcase {
    grid-template-columns: 1fr;
  }

  .team-list,
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .showcase-card.large,
  .showcase-card.wide {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 360px;
  }

  .appointment-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding: 112px 20px 56px;
  }

  .page-hero {
    min-height: 66vh;
    padding: 112px 20px 54px;
  }

  .quick-strip,
  .team-list,
  .gallery,
  .showcase-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .field-row {
    display: grid;
  }

  .gallery img {
    height: 300px;
  }

  .showcase-card,
  .showcase-card.large,
  .showcase-card.wide {
    min-height: 320px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-contact {
    right: 12px;
    bottom: 14px;
    top: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    transform: none;
  }

  .quick-link {
    width: 54px;
    height: 54px;
  }
}

@keyframes contactPulse {
  0%,
  100% {
    box-shadow: 0 14px 34px rgba(17, 17, 17, 0.24);
  }

  50% {
    box-shadow: 0 14px 34px rgba(17, 17, 17, 0.24), 0 0 0 8px rgba(180, 95, 67, 0.12);
  }
}
