:root {
  --coral: #d1604c;
  --coral-dark: #a74638;
  --coral-light: #e5a091;
  --peach: #f1ddcd;
  --cream: #faf7f3;
  --ink: #211c1a;
  --charcoal: #302725;
  --white: #ffffff;
  --text-muted: #756863;
  --border: rgba(33, 28, 26, 0.12);
  --max-width: 1180px;
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 20px 50px rgba(67, 41, 34, 0.1);
  --shadow-hover: 0 28px 65px rgba(67, 41, 34, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.section-label,
.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--coral-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label-light {
  color: var(--peach);
}

.site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 135px;
  padding: 1.5rem 1rem;
  background: var(--cream);
}

.brand {
  display: inline-block;
}

.brand-logo {
  width: min(520px, 80vw);
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(250, 247, 243, 0.94);
  backdrop-filter: blur(14px);
}

.nav-list {
  display: flex;
  justify-content: center;
  gap: clamp(0.5rem, 4vw, 2.5rem);
  max-width: var(--max-width);
  margin: auto;
  padding: 0.6rem 1rem;
  list-style: none;
}

.nav-list a {
  position: relative;
  display: block;
  padding: 0.65rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: var(--coral);
  transform: translateX(-50%);
  transition: width 250ms ease;
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  width: 70%;
}

.nav-list a:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 680px;
  max-width: 1450px;
  margin: 0 auto;
  color: var(--white);
  background:
    linear-gradient(
      90deg,
      rgba(26, 20, 18, 0.9) 0%,
      rgba(26, 20, 18, 0.7) 43%,
      rgba(26, 20, 18, 0.15) 75%
    ),
    url("../img/hero.jpg") center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 90%);
  padding: clamp(3rem, 8vw, 7rem);
  animation: hero-enter 800ms ease-out both;
}

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

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.5rem, 9vw, 7rem);
}

.hero h1 span {
  display: block;
  color: var(--coral-light);
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.availability-note {
  max-width: 500px;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.87rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition:
    transform 200ms ease,
    background-color 200ms ease,
    color 200ms ease,
    box-shadow 200ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

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

.button-primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover {
  background: var(--white);
  color: var(--ink);
}

.button-light {
  margin-top: 1rem;
  background: var(--cream);
  color: var(--ink);
}

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

.button-dark:hover {
  background: var(--coral-dark);
}

.button:focus-visible {
  outline: 3px solid var(--coral-light);
  outline-offset: 4px;
}

.intro {
  max-width: 850px;
  margin: clamp(5rem, 10vw, 8rem) auto;
  padding: 0 1.5rem;
  text-align: center;
}

.intro p:last-child {
  max-width: 690px;
  margin: 1.5rem auto 0;
  color: var(--text-muted);
  font-size: 1.06rem;
}

.services {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 1.5rem clamp(5rem, 10vw, 8rem);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}

.section-heading > p {
  color: var(--text-muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms ease;
}

.service-card:hover .card-image img {
  transform: scale(1.055);
}

.card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 50px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-content {
  padding: 1.7rem;
}

.card-number {
  margin-bottom: 1rem;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.card-content h3 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.card-content > p:not(.card-number):not(.card-alert) {
  color: var(--text-muted);
}

.card-alert {
  margin-top: 1.2rem;
  color: var(--coral-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  gap: 0.55rem;
  margin-top: 1rem;
  color: var(--coral-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  transition: transform 200ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.tutorials {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
  max-width: 1300px;
  margin: 0 auto clamp(5rem, 10vw, 8rem);
  padding: clamp(3rem, 8vw, 6rem);
  background: var(--charcoal);
  color: var(--white);
}

.tutorial-copy {
  max-width: 600px;
}

.tutorial-copy > p:not(.section-label) {
  color: rgba(255, 255, 255, 0.72);
}

.tutorial-details {
  display: grid;
  gap: 1rem;
}

.tutorial-details article {
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.tutorial-details span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--coral-light);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.tutorial-details h3 {
  margin-bottom: 0.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.tutorial-details p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
}

.booking {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 4rem;
  align-items: end;
  max-width: var(--max-width);
  margin: 0 auto clamp(5rem, 10vw, 8rem);
  padding: clamp(2.5rem, 6vw, 5rem);
  background: var(--peach);
  border-radius: var(--radius-lg);
}

.booking-action p {
  color: #6b5953;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  max-width: var(--max-width);
  margin: auto;
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-logo img {
  width: 75px;
}

.footer-copy {
  text-align: right;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.footer-copy p {
  margin-bottom: 0.4rem;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .section-heading {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
    max-width: 560px;
    justify-self: center;
  }

  .tutorials {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

@media (max-width: 650px) {
  .site-header {
    min-height: 105px;
  }

  .brand-logo {
    width: 90%;
  }

  .nav-list {
    gap: 0;
  }

  .nav-list a {
    padding: 0.6rem 0.5rem;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 680px;
    align-items: flex-end;
    background:
      linear-gradient(
        180deg,
        rgba(26, 20, 18, 0.18) 10%,
        rgba(26, 20, 18, 0.92) 78%
      ),
      url("../img/hero.jpg") 62% center / cover no-repeat;
  }

  .hero-content {
    width: 100%;
    padding: 3rem 1.5rem;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .tutorials {
    margin-inline: 1rem;
    padding: 3rem 1.5rem;
    border-radius: var(--radius-md);
  }

  .booking {
    margin-inline: 1rem;
    border-radius: var(--radius-md);
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo img {
    margin-inline: auto;
  }

  .footer-copy {
    text-align: center;
  }
}

@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;
  }
}
