:root {
  --bg: #f3efec;
  --bg-warm: #f3efec;
  --ink: #141414;
  --body: #4c5052;
  --muted: #7c7d7a;
  --sand: #b8a184;
  --line: #d8cbbc;
  --line-strong: #c7b9a8;
  --white: #fffdfa;
  --font-serif: "Instrument Serif", "Bodoni 72", "Didot", Georgia, serif;
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  --content-max: 1680px;
  --gutter: clamp(24px, 5vw, 80px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  letter-spacing: 0;
  overflow-x: hidden;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

[hidden] {
  display: none !important;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

/* ===================================================================
   FLUID SECTION LAYOUT
   Each section is a centred, full-width flex row: copy + visual on the
   top line, any list/grid/footer wraps to its own full-width line below.
   Content caps at --content-max and centres; section tints ≈ page bg so
   the margins on very wide screens read as seamless whitespace.
   =================================================================== */
.section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-content: center;
  gap: clamp(36px, 4vw, 72px) clamp(40px, 5vw, 96px);
  max-width: var(--content-max);
  margin-inline: auto;
  padding: clamp(96px, 11vh, 168px) var(--gutter);
  background: var(--bg);
}

.section-copy {
  position: relative;
  z-index: 2;
  flex: 1 1 420px;
  max-width: 680px;
}

/* The decorative / showcase visual that sits beside the copy */
.hero-art,
.services-art,
.work-art,
.why-art,
.cta-art {
  flex: 1 1 380px;
  align-self: center;
  justify-self: end;
}

.hero-art {
  max-width: 600px;
}
.services-art {
  max-width: 760px;
}
.work-art {
  max-width: 500px;
}
.why-art {
  max-width: 700px;
}
.cta-art {
  max-width: 560px;
}

/* Full-width rows that drop below the copy/visual line */
.service-list,
.work-grid,
.why-grid,
.benefit-list,
.site-footer {
  flex: 1 1 100%;
  width: 100%;
}

/* Scroll reveal - progressive enhancement; disabled for reduced-motion and no-JS */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--d, 0s);
  }

  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

.eyebrow {
  margin: 0;
  color: var(--body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.accent-rule {
  display: block;
  width: 54px;
  height: 2px;
  margin: 24px 0 30px;
  background: var(--sand);
}

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

h1,
h2,
h3,
.brand {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
}

.section-copy h2,
.hero-copy h1,
.cta-copy h2 {
  color: var(--ink);
  line-height: 1.04;
}

.section-copy > p:not(.eyebrow),
.hero-copy p,
.cta-copy > p:not(.eyebrow) {
  color: var(--body);
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.64;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 64px;
  padding: 0 29px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:focus-visible,
.service-item:focus-visible,
.text-arrow:focus-visible,
.footer-link:focus-visible,
.nav-links a:focus-visible {
  outline: 2px solid rgba(20, 20, 20, 0.55);
  outline-offset: 5px;
}

.button-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.05);
  background: #262321;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 22px rgba(20, 20, 20, 0.1);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #322e2b;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 26px rgba(20, 20, 20, 0.12);
}

.button-light {
  color: #171717;
  border-color: rgba(20, 20, 20, 0.86);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: #000;
  background: rgba(255, 255, 255, 0.34);
}

.arrow {
  display: inline-block;
  min-width: 18px;
  font-size: 21px;
  line-height: 0.7;
  text-align: right;
  transform: translateY(-1px);
  transition: transform 180ms ease;
}

.button:hover .arrow,
.button:focus-visible .arrow {
  transform: translate(5px, -1px);
}

/* ---------------- HERO ---------------- */
.hero-section {
  min-height: 100vh;
  padding-top: clamp(128px, 17vh, 188px);
}

.hero-art-extension {
  display: none;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  padding: clamp(26px, 3vw, 40px) var(--gutter) 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-size: clamp(25px, 2.1vw, 33px);
  line-height: 1;
}

.brand-mark {
  height: 30px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 56px);
  min-width: 0;
  margin-left: auto;
  font-size: 18px;
  font-weight: 400;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  line-height: 1;
}

.topbar-button {
  min-width: 0;
  min-height: 46px;
  padding: 0 22px;
  font-size: 15px;
  border-radius: 8px;
}

.hero-copy {
  flex: 1 1 460px;
  max-width: 760px;
}

.hero-copy h1 {
  font-size: clamp(56px, 7.4vw, 128px);
  line-height: 1.0;
}

.hero-copy .accent-rule {
  margin-top: 32px;
  margin-bottom: 32px;
  width: 79px;
  height: 3px;
}

.hero-copy p {
  max-width: 500px;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.58;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: clamp(40px, 4vw, 61px);
}

.button-row .button {
  gap: 14px;
}

/* ---------------- SERVICES ---------------- */
.services-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(48px, 6vw, 120px);
  row-gap: clamp(36px, 4vw, 60px);
  align-items: start;
}

.services-copy {
  grid-column: 1;
  grid-row: 1;
  max-width: 620px;
}

.services-art {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  max-width: 760px;
  align-self: start;
  justify-self: start;
}

.services-copy h2 {
  font-size: clamp(44px, 5.4vw, 92px);
}

.services-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 24px;
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.7;
}

.service-list {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
}

.service-item {
  display: grid;
  grid-template-columns: 46px 1fr 38px;
  gap: 25px;
  align-items: start;
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--line);
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.service-item:hover,
.service-item:focus-visible {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.item-number {
  color: var(--sand);
  font-family: var(--font-sans);
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
}

.service-item .item-number {
  padding-top: 2px;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
}

.item-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.item-copy strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(25px, 2vw, 32px);
  font-weight: 400;
  line-height: 1.05;
}

.item-copy span {
  color: var(--body);
  font-size: 15px;
  line-height: 1.5;
}

.item-arrow {
  align-self: start;
  color: #161616;
  font-size: 22px;
  line-height: 0.75;
  transition: transform 180ms ease;
}

.service-item:hover .item-arrow,
.service-item:focus-visible .item-arrow {
  transform: translateX(5px);
}

/* ---------------- WORK ---------------- */
.work-section {
  --section-bg: #f5f0ed;
}

.work-copy h2 {
  font-size: clamp(44px, 5.5vw, 92px);
}

.work-copy > p:not(.eyebrow) {
  max-width: 555px;
  margin-top: 22px;
  font-size: clamp(18px, 1.4vw, 20px);
  line-height: 1.55;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  column-gap: clamp(32px, 3vw, 48px);
  row-gap: clamp(40px, 5vh, 64px);
  margin-top: clamp(8px, 2vw, 24px);
}

.work-card {
  min-width: 0;
}

.work-card picture {
  display: block;
  height: clamp(220px, 22vw, 300px);
  overflow: hidden;
  border-radius: 2px;
  background: #ebe4dc;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card .item-number {
  margin-top: 28px;
}

.work-card h3 {
  margin-top: 12px;
  font-size: clamp(30px, 2.6vw, 40px);
  line-height: 1.04;
}

.work-card > p:not(.item-number) {
  margin-top: 14px;
  color: var(--body);
  font-size: 17px;
  line-height: 1.45;
}

.text-arrow {
  display: inline-flex;
  margin-top: 20px;
  font-size: 31px;
  line-height: 1;
  transition: transform 180ms ease;
}

.work-card:hover .text-arrow,
.text-arrow:focus-visible {
  transform: translateX(5px);
}

/* ---------------- WHY ---------------- */
.why-section {
  --section-bg: #f1ece8;
}

.why-copy h2 {
  font-size: clamp(44px, 5vw, 84px);
  line-height: 1.04;
}

.why-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 32px;
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.66;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(36px, 4vw, 72px);
  max-width: 1320px;
  margin: clamp(24px, 3vw, 44px) auto 0;
  border-top: 1px solid var(--line);
}

.why-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-items: start;
  padding: 36px 0 32px;
  border-bottom: 1px solid var(--line);
}

.why-number {
  color: var(--sand);
  font-family: var(--font-serif);
  font-size: 46px;
  line-height: 1;
}

.why-item div {
  position: relative;
  padding-left: 32px;
}

.why-item div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 1px;
  height: calc(100% - 8px);
  background: var(--line);
}

.why-item h3 {
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.08;
}

.why-item p:not(.why-number) {
  margin-top: 12px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.56;
}

/* ---------------- BOOKING ---------------- */
.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: clamp(40px, 5vw, 90px);
  row-gap: clamp(40px, 5vh, 64px);
  align-items: start;
}

.booking-copy {
  grid-column: 1;
  grid-row: 1;
  max-width: 680px;
}

.booking-copy h2 {
  font-size: clamp(40px, 4.6vw, 74px);
}

.booking-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 28px;
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.72;
}

.benefit-list {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #3a3f40;
  font-size: 15px;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  color: #202020;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
}

.booking-art {
  display: none;
}

.booking-widget {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  max-width: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(20, 20, 20, 0.08);
}

/* Booking calendar is a Cal.com inline embed (see index.html). */
#my-cal-inline-15min {
  border-radius: 14px;
}

/* ---------------- CTA + FOOTER ---------------- */
.cta-section {
  --section-bg: #f1ece8;
}

.cta-copy {
  order: 1;
}

.cta-copy h2 {
  font-size: clamp(52px, 6.4vw, 116px);
}

.cta-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 28px;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.6;
}

.cta-copy .button {
  min-width: 242px;
  margin-top: clamp(28px, 3vw, 42px);
}

.cta-art {
  order: 2;
}

.site-footer {
  order: 3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(32px, 4vw, 55px);
  margin-top: clamp(48px, 7vh, 90px);
  padding-top: clamp(40px, 4vw, 62px);
  border-top: 1px solid #aaa69f;
}

.site-footer h3 {
  margin-bottom: 16px;
  font-size: clamp(24px, 2vw, 29px);
  line-height: 1;
}

.site-footer p,
.site-footer a {
  color: #3f4547;
  font-size: 16px;
  line-height: 1.75;
}

.site-footer p {
  max-width: 260px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.45);
  line-height: 1.2;
}

.footer-link span:last-child {
  transition: transform 180ms ease;
}

.footer-link:hover span:last-child,
.footer-link:focus-visible span:last-child {
  transform: translateX(5px);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 900px) {
  .section {
    padding: clamp(64px, 9vh, 96px) clamp(22px, 6vw, 40px);
    gap: 40px;
  }

  .topbar {
    flex-wrap: wrap;
    gap: 14px 20px;
    padding-top: 26px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-top: 12px;
    font-size: 15px;
  }

  .topbar-button {
    min-height: 48px;
    min-width: 150px;
    margin-left: auto;
    font-size: 15px;
  }

  .hero-section {
    padding-top: clamp(150px, 26vh, 220px);
    min-height: auto;
  }

  .hero-copy p,
  .booking-copy > p:not(.eyebrow),
  .services-copy > p:not(.eyebrow),
  .work-copy > p:not(.eyebrow),
  .why-copy > p:not(.eyebrow),
  .cta-copy > p:not(.eyebrow) {
    max-width: 100%;
  }

  .benefit-list {
    gap: 14px 28px;
  }

  .service-list,
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .services-section {
    grid-template-columns: 1fr;
  }

  .services-copy,
  .services-art,
  .service-list {
    grid-column: 1;
    grid-row: auto;
  }

  .booking-section {
    grid-template-columns: 1fr;
  }

  .booking-copy,
  .benefit-list,
  .booking-widget {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 56px 20px;
  }

  .hero-section {
    padding-top: clamp(156px, 24vh, 220px);
  }

  .topbar {
    padding-inline: 20px;
  }

  .nav-links {
    gap: 14px;
    font-size: 14px;
  }

  .topbar-button {
    display: none;
  }

  .button-row .button {
    flex: 1 1 auto;
  }

  .service-item {
    grid-template-columns: 40px 1fr 24px;
    gap: 16px;
  }

  .why-item {
    grid-template-columns: 56px 1fr;
    gap: 18px;
  }

  .why-item div {
    padding-left: 18px;
  }

  .booking-widget {
    min-height: 380px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
