:root {
  --ink: #171514;
  --muted: #7b7168;
  --paper: #f6f1ea;
  --panel: #211d1a;
  --panel-soft: #2d2722;
  --copper: #c98355;
  --copper-light: #e1ad7b;
  --copper-dark: #8f5637;
  --bone: #fff7ec;
  --line: rgba(201, 131, 85, 0.28);
  --shadow: 0 24px 70px rgba(15, 12, 10, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--bone);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(23, 21, 20, 0.94);
  box-shadow: 0 12px 35px rgba(15, 12, 10, 0.22);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Rye", "Roboto Slab", Inter, sans-serif;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--copper-light);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--copper-light);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 116px clamp(20px, 6vw, 82px) 72px;
  background: var(--ink);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.05);
}

.hero-overlay {
  background:
    radial-gradient(circle at 75% 42%, rgba(201, 131, 85, 0.18), rgba(23, 21, 20, 0) 30%),
    linear-gradient(90deg, rgba(17, 15, 14, 0.95) 0%, rgba(17, 15, 14, 0.82) 44%, rgba(17, 15, 14, 0.34) 78%),
    linear-gradient(0deg, rgba(17, 15, 14, 0.62), rgba(17, 15, 14, 0.08));
}

.hero-content {
  position: relative;
  max-width: 660px;
  color: var(--bone);
}

.hero-logo {
  width: clamp(96px, 16vw, 150px);
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 24px;
  border-radius: 50%;
  border: 2px solid var(--copper-light);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--copper-light);
}

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

h1,
h2,
blockquote {
  font-family: "Roboto Slab", Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 760px;
  font-family: "Rye", "Roboto Slab", Inter, sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 1;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

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

.hero-copy {
  max-width: 580px;
  margin-bottom: 30px;
  color: rgba(255, 247, 236, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: var(--ink);
  background: var(--copper-light);
  box-shadow: 0 14px 32px rgba(201, 131, 85, 0.24);
}

.button-primary:hover {
  background: var(--copper);
}

.button-secondary {
  color: var(--bone);
  border: 1px solid rgba(225, 173, 123, 0.58);
  background: rgba(225, 173, 123, 0.1);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  color: var(--bone);
  background: var(--copper-dark);
}

.trust-band div {
  padding: 26px clamp(20px, 5vw, 54px);
  background: var(--panel);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  font-size: 1rem;
}

.trust-band span {
  margin-top: 4px;
  color: rgba(255, 247, 236, 0.68);
  font-size: 0.94rem;
}

.section {
  padding: clamp(72px, 9vw, 122px) clamp(20px, 6vw, 82px);
}

.page-hero {
  min-height: 54vh;
  display: grid;
  align-content: end;
  padding: 150px clamp(20px, 6vw, 82px) clamp(58px, 8vw, 94px);
  color: var(--bone);
  background:
    linear-gradient(90deg, rgba(17, 15, 14, 0.96), rgba(17, 15, 14, 0.72)),
    url("assets/805-business-card-vibe.jpeg") center / cover;
}

.page-hero h1 {
  max-width: 880px;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 247, 236, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.team-section {
  color: var(--bone);
  background:
    linear-gradient(135deg, rgba(225, 173, 123, 0.12), rgba(225, 173, 123, 0)),
    var(--panel-soft);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 420px));
  justify-content: center;
  gap: 18px;
}

.team-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(23, 21, 20, 0.66);
}

.team-card p {
  margin-bottom: 0;
  color: rgba(255, 247, 236, 0.68);
}

.team-card h3 {
  font-family: "Rye", "Roboto Slab", Inter, sans-serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.1;
}

.team-profile {
  display: grid;
  align-content: start;
}

.team-photo-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  margin-bottom: 22px;
  border: 1px solid rgba(225, 173, 123, 0.36);
  border-radius: 8px;
  color: var(--copper-light);
  background:
    linear-gradient(135deg, rgba(225, 173, 123, 0.18), rgba(225, 173, 123, 0.02)),
    rgba(17, 15, 14, 0.54);
  font-family: "Rye", "Roboto Slab", Inter, sans-serif;
  font-size: 1.5rem;
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-bottom: 22px;
  border: 1px solid rgba(225, 173, 123, 0.36);
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.team-title {
  margin-bottom: 8px;
  color: var(--copper-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-bio {
  color: rgba(255, 247, 236, 0.7);
}

.team-number {
  display: block;
  margin-bottom: 34px;
  color: var(--copper-light);
  font-family: "Rye", "Roboto Slab", Inter, sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

.gallery-section {
  background: var(--paper);
}

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

.gallery-item,
.gallery-placeholder {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 35px rgba(15, 12, 10, 0.12);
}

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

.gallery-placeholder {
  display: grid;
  place-items: center;
  color: var(--copper-light);
  background:
    linear-gradient(135deg, rgba(225, 173, 123, 0.18), rgba(225, 173, 123, 0.02)),
    var(--panel);
  font-family: "Rye", "Roboto Slab", Inter, sans-serif;
}

.services-section {
  padding-top: clamp(34px, 5vw, 58px);
}

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

.pricing-note {
  margin-bottom: 22px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--bone);
  background: var(--panel-soft);
}

.pricing-note p {
  margin-bottom: 0;
  color: rgba(255, 247, 236, 0.78);
  font-weight: 700;
}

.service-card {
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--bone);
  background: var(--panel);
  box-shadow: 0 14px 35px rgba(15, 12, 10, 0.12);
}

.service-card p {
  margin-bottom: 0;
  color: rgba(255, 247, 236, 0.66);
}

.service-card-heading {
  margin-bottom: 18px;
}

.service-card-heading h3 {
  margin-bottom: 0;
  color: var(--copper-light);
  font-family: "Rye", "Roboto Slab", Inter, sans-serif;
  font-weight: 400;
  line-height: 1.1;
}

.price-list {
  display: grid;
  gap: 12px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(225, 173, 123, 0.18);
}

.price-list span {
  color: var(--bone);
  font-weight: 800;
}

.price-list strong {
  flex: 0 0 auto;
  color: var(--copper-light);
  font-size: 0.94rem;
}

.service-examples {
  font-size: 0.92rem;
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  color: var(--bone);
  background:
    linear-gradient(135deg, rgba(225, 173, 123, 0.14), rgba(225, 173, 123, 0)),
    var(--ink);
}

.reviews-section .eyebrow {
  color: var(--copper-light);
}

.reviews-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 247, 236, 0.72);
  font-size: 1.05rem;
}

.review-feed {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: 16px;
}

.review-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(225, 173, 123, 0.28);
  border-radius: 8px;
  background: var(--panel-soft);
}

.review-card p {
  margin-bottom: 0;
  color: rgba(255, 247, 236, 0.68);
}

.review-card-featured {
  min-height: 240px;
  background:
    linear-gradient(145deg, rgba(201, 131, 85, 0.2), rgba(201, 131, 85, 0.04)),
    var(--panel);
}

.review-stars {
  margin-bottom: 16px;
  color: var(--copper-light);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}

.review-source {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(225, 173, 123, 0.42);
  border-radius: 999px;
  color: var(--copper-light);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--copper-light);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
  color: var(--bone);
  background:
    linear-gradient(135deg, rgba(201, 131, 85, 0.16), rgba(201, 131, 85, 0)),
    var(--ink);
}

.package-copy p:not(.eyebrow),
.booking-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
}

.split-section .package-copy p:not(.eyebrow) {
  color: rgba(255, 247, 236, 0.72);
}

.package-list {
  display: grid;
  gap: 14px;
}

.package-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 118px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.package-list p {
  margin-bottom: 0;
  color: rgba(255, 247, 236, 0.66);
}

.package-list strong {
  flex: 0 0 auto;
  color: var(--copper-light);
  font-size: 1.05rem;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: var(--paper);
}

.visit-panel {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--bone);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.visit-panel .eyebrow {
  color: var(--copper-light);
}

.details-list {
  display: grid;
  gap: 22px;
  margin: 30px 0 0;
}

.details-list div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(225, 173, 123, 0.22);
}

dt {
  color: var(--copper-light);
  font-weight: 800;
}

dd {
  margin: 0;
}

blockquote {
  margin: 0;
  max-width: 720px;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 4.7rem);
  font-weight: 900;
  line-height: 1.04;
}

cite {
  display: block;
  margin-top: 22px;
  color: var(--copper-dark);
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-style: normal;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 74px);
  background: #ece2d5;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bone);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 21, 20, 0.16);
  border-radius: 8px;
  color: var(--ink);
  background: #fffaf3;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(201, 131, 85, 0.28);
  border-color: var(--copper);
}

.booking-form .button {
  width: fit-content;
  margin-top: 6px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 6vw, 82px);
  color: var(--bone);
  background: var(--ink);
  font-weight: 700;
}

@media (max-width: 960px) {
  .service-grid,
  .team-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .visit-section,
  .booking-section,
  .reviews-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }

  .brand span {
    max-width: 190px;
    white-space: normal;
    line-height: 1.1;
  }

  .nav {
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    font-size: 0.78rem;
  }

  .nav a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 9px;
    border: 1px solid rgba(225, 173, 123, 0.28);
    border-radius: 999px;
    background: rgba(23, 21, 20, 0.52);
  }

  .nav .nav-cta {
    color: var(--ink);
    background: var(--copper-light);
  }

  .hero {
    min-height: 100svh;
    padding: 176px 16px 44px;
    align-items: end;
  }

  .hero-logo {
    width: 96px;
    margin-bottom: 18px;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-copy {
    margin-bottom: 22px;
    font-size: 1.05rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(17, 15, 14, 0.96) 0%, rgba(17, 15, 14, 0.78) 52%, rgba(17, 15, 14, 0.22) 100%);
  }

  .section {
    padding: 48px 16px;
  }

  .page-hero {
    min-height: auto;
    padding: 196px 16px 42px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .team-card,
  .service-card,
  .review-card,
  .visit-panel,
  .booking-form {
    padding: 22px;
  }

  .team-photo {
    aspect-ratio: 1 / 1;
  }

  .services-section {
    padding-top: 24px;
  }

  .pricing-note {
    padding: 16px;
    margin-bottom: 16px;
  }

  .pricing-note p {
    font-size: 0.94rem;
  }

  .trust-band,
  .team-grid,
  .service-grid,
  .gallery-grid,
  .review-feed {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card-heading {
    margin-bottom: 14px;
  }

  .service-card-heading h3 {
    font-size: 1.08rem;
    overflow-wrap: anywhere;
  }

  .price-list {
    gap: 10px;
    margin-bottom: 16px;
  }

  .price-list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 12px;
    align-items: start;
  }

  .price-list span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .price-list strong {
    font-size: 1rem;
    white-space: nowrap;
  }

  .service-examples {
    overflow-wrap: anywhere;
  }

  .package-list article,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .details-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .booking-form .button {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .price-list li {
    grid-template-columns: 1fr;
  }

  .price-list strong {
    white-space: normal;
  }
}
