:root {
  --ink: #111111;
  --paper: #fffdfb;
  --white: #ffffff;
  --peach: #ffb184;
  --peach-dark: #f38b59;
  --peach-soft: #ffe4d5;
  --muted: #75716f;
  --line: #ead8cf;
  --header-h: 94px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

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

h1,
h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.section-divider {
  border-top: 1px solid var(--line);
}

/* Shared elements */

.eyebrow {
  margin: 0 0 28px;
  font: 600 1rem / 1 "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  min-height: 64px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  background: var(--peach-dark);
  color: #fff;
  cursor: pointer;
  font: 600 1rem "Barlow Condensed", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.button:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  background: var(--peach);
}

.hero-copy {
  z-index: 2;
  align-self: center;
  padding:
    calc(var(--header-h) + 30px)
    clamp(30px, 5vw, 86px)
    100px;
}

.hero h1 {
  margin-bottom: 32px;
  color: #fff;
  font-size: clamp(4.8rem, 8.1vw, 9.7rem);
  line-height: 0.82;
  letter-spacing: -0.03em;
}

.hero-intro {
  max-width: 500px;
  color: rgba(32, 18, 12, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  margin-top: 40px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 34px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.hero-btn span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease;
}

.hero-btn:hover {
  background: var(--peach-dark);
  transform: translateY(-3px);
}

.hero-btn:hover span {
  transform: translateX(4px);
}

.hero-image {
  min-height: 100%;
  background: url("assets/hero.jpg") center 42% / cover no-repeat;
}

.hero-image::after {
  content: "";
  display: block;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      var(--peach) 0%,
      rgba(255, 177, 132, 0.1) 18%,
      transparent 38%
    );
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: clamp(30px, 5vw, 86px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font: 600 0.9rem "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.scroll-cue b {
  font-size: 1.25rem;
  animation: bob 1.6s infinite;
}

@keyframes bob {
  50% {
    transform: translateY(6px);
  }
}

/* Services */

.about {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
  gap: clamp(40px, 7vw, 120px);
  overflow: hidden;
  padding:
    clamp(100px, 11vw, 160px)
    clamp(28px, 11vw, 200px);
  background: #fff;
}

.about-copy {
  max-width: 640px;
}

.about h2 {
  margin-bottom: 45px;
  font-size: clamp(3.4rem, 5vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
}

.about h3 {
  margin-bottom: 28px;
  font:
    600 clamp(1.25rem, 1.7vw, 1.7rem) / 1.25
    "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}

.about-copy > p:last-of-type {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.about-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 44px;
}

.phone {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
}

.phone-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #fff3ed;
}

.about-gallery {
  position: relative;
  min-height: 700px;
}

.flatlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 79%;
  height: 78%;
  object-fit: cover;
}

.portrait {
  position: absolute;
  bottom: 0;
  left: -12%;
  width: 77%;
  height: 72%;
  object-fit: cover;
  border: 14px solid #fff;
}

/* Menu introduction */

.menu-intro {
  position: relative;
  min-height: 78svh;
  display: grid;
  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(340px, 0.7fr);
  align-items: center;
  gap: clamp(60px, 10vw, 170px);
  overflow: hidden;
  padding:
    clamp(110px, 12vw, 180px)
    clamp(28px, 11vw, 200px);
  background: var(--paper);
}

.menu-intro-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.menu-intro h2 {
  max-width: 760px;
  margin-bottom: 34px;
  font-size: clamp(3.8rem, 6.7vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
}

.menu-intro-content > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.8;
}

.menu-intro-button {
  border-radius: 999px;
}

.menu-intro-visual {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(35px, 5vw, 58px);
  overflow: hidden;
  background: var(--peach);
  color: var(--ink);
}

.menu-intro-visual::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -90px;
  width: 270px;
  height: 360px;
  border: 1px solid rgba(17, 17, 17, 0.13);
  border-radius: 50%;
  transform: rotate(28deg);
}

.menu-intro-visual::after {
  content: "";
  position: absolute;
  top: -66px;
  right: -42px;
  width: 190px;
  height: 280px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 50%;
  transform: rotate(12deg);
}

.menu-visual-label {
  position: absolute;
  top: 38px;
  left: 42px;
  font: 600 0.88rem "Barlow Condensed", sans-serif;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.menu-visual-number {
  position: absolute;
  top: 50%;
  right: clamp(25px, 4vw, 52px);
  color: rgba(255, 255, 255, 0.56);
  font:
    700 clamp(8rem, 14vw, 13rem) / 0.7
    "Barlow Condensed",
    sans-serif;
  transform: translateY(-50%);
}

.menu-intro-visual p {
  position: relative;
  z-index: 2;
  max-width: 310px;
  margin: 0;
  font:
    600 clamp(1.5rem, 2.4vw, 2.3rem) / 1.15
    "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}

.menu-intro-decoration {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(243, 139, 89, 0.17);
  border-radius: 50%;
  pointer-events: none;
}

.menu-intro-decoration::before,
.menu-intro-decoration::after {
  content: "";
  position: absolute;
  border: inherit;
  border-radius: inherit;
}

.menu-intro-decoration::before {
  inset: 34px;
}

.menu-intro-decoration::after {
  inset: 70px;
}

/* Opening times — contact page style */

.visit-section {
  display: grid;
  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(440px, 1.2fr);
  align-items: center;
  gap: clamp(60px, 10vw, 180px);
  min-height: 82svh;
  padding:
    clamp(100px, 11vw, 160px)
    clamp(28px, 11vw, 200px);
  background: #15110f;
  color: #fff;
}

.visit-heading {
  max-width: 570px;
}

.visit-heading .eyebrow {
  color: var(--peach);
}

.visit-heading h2 {
  margin: 0 0 32px;
  font-size: clamp(3.4rem, 5vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.025em;
}

.visit-heading > p:last-child {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hours-list {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hour-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.hour-row span {
  font-size: 1rem;
  font-weight: 500;
}

.hour-row strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: right;
  text-transform: uppercase;
}

/* Your next appointment — contact page style */

.contact-cta {
  position: relative;
  min-height: 75svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding:
    clamp(100px, 12vw, 190px)
    clamp(28px, 8vw, 130px);
  background: var(--peach);
  text-align: center;
}

.contact-cta .eyebrow {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
}

.contact-cta h2 {
  position: relative;
  z-index: 2;
  max-width: 1050px;
  margin: 0 auto 48px;
  font-size: clamp(4rem, 7vw, 8.4rem);
  line-height: 0.86;
  letter-spacing: -0.03em;
}

.primary-button {
  position: relative;
  z-index: 2;
  min-height: 64px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font: 600 1rem "Barlow Condensed", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.primary-button:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-3px);
}

.cta-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(72vw, 900px);
  aspect-ratio: 1;
  border: 1px solid rgba(17, 17, 17, 0.17);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-decoration::before,
.cta-decoration::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.cta-decoration::before {
  inset: 10%;
  border: 1px dashed rgba(17, 17, 17, 0.16);
}

.cta-decoration::after {
  inset: 22%;
  border: 1px solid rgba(17, 17, 17, 0.12);
}

/* Reveal animations */

[data-reveal] {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity 0.75s ease,
    transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="up"] {
  transform: translateY(46px);
}

[data-reveal="left"] {
  transform: translateX(-55px);
}

[data-reveal="right"] {
  transform: translateX(55px);
}

[data-reveal="image"] {
  transform: scale(1.06);
}

[data-reveal].is-revealed,
[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Responsive */

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    background-position: 60% center;
  }

  .hero-image::after {
    background:
      linear-gradient(
        90deg,
        rgba(255, 177, 132, 0.96) 0%,
        rgba(255, 177, 132, 0.78) 47%,
        rgba(255, 177, 132, 0.08) 78%
      );
  }

  .hero-copy {
    max-width: 650px;
  }

  .about {
    grid-template-columns: 1fr;
    padding-inline: clamp(28px, 8vw, 90px);
  }

  .about-gallery {
    min-height: 620px;
    width: 100%;
    max-width: 750px;
    justify-self: center;
  }

  .menu-intro {
    grid-template-columns: 1fr;
  }

  .menu-intro-content {
    max-width: 760px;
  }

  .menu-intro-visual {
    width: 100%;
    max-width: 760px;
    min-height: 360px;
  }

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

  .visit-heading {
    max-width: 720px;
  }

  .hours-list {
    width: 100%;
    max-width: 780px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 74px;
  }

  .hero-copy {
    align-self: end;
    padding-right: 24px;
    padding-bottom: 120px;
    padding-left: 24px;
  }

  .hero h1 {
    font-size: clamp(4rem, 20vw, 6.3rem);
  }

  .hero-intro {
    max-width: 88%;
    color: rgba(17, 17, 17, 0.78);
  }

  .hero-image {
    background-position: 45% 80%;
    background-size: cover;
  }

  .hero-image::after {
    background:
      linear-gradient(
        0deg,
        rgba(255, 177, 132, 0.98) 0%,
        rgba(255, 177, 132, 0.78) 48%,
        rgba(255, 177, 132, 0.08) 82%
      );
  }

  .hero-btn {
    padding: 15px 22px;
    font-size: 0.9rem;
  }

  .scroll-cue {
    left: 24px;
  }

  .about {
    min-height: auto;
    gap: 55px;
    padding: 100px 24px;
  }

  .about h2 {
    font-size: clamp(3.2rem, 15vw, 5.2rem);
  }

  .about-gallery {
    min-height: 480px;
  }

  .flatlay {
    width: 88%;
    height: 72%;
  }

  .portrait {
    left: -3%;
    width: 82%;
    height: 68%;
    border-width: 8px;
  }

  .menu-intro {
    min-height: auto;
    gap: 55px;
    padding: 100px 24px;
  }

  .menu-intro h2 {
    font-size: clamp(3.2rem, 15vw, 5.4rem);
  }

  .menu-intro-visual {
    min-height: 310px;
    padding: 30px;
  }

  .menu-visual-label {
    top: 28px;
    left: 30px;
  }

  .menu-visual-number {
    right: 24px;
    font-size: clamp(7rem, 34vw, 10rem);
  }

  .visit-section {
    min-height: auto;
    gap: 55px;
    padding: 90px 24px;
  }

  .visit-heading h2 {
    font-size: clamp(3.2rem, 15vw, 5.2rem);
  }

  .contact-cta {
    min-height: 65svh;
    padding: 100px 24px;
  }

  .contact-cta h2 {
    font-size: clamp(3.5rem, 15vw, 6rem);
  }
}

@media (max-width: 520px) {
  .hour-row {
    display: grid;
    gap: 7px;
  }

  .hour-row strong {
    text-align: left;
  }

  .primary-button {
    width: 100%;
    max-width: 330px;
    padding-inline: 20px;
  }

  .cta-decoration {
    width: 135vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}