@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; }

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

html {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #2a2724;
  background: #ffffff;
  line-height: 1.5; }

body {
  margin: 0;
  padding-top: 80px;
  background-color: #ffffff;
  background-image: linear-gradient(to bottom, transparent 0, transparent 600px, #ffffff 900px, #ffffff 100%), conic-gradient(rgba(184, 90, 63, 0.08) 0 25%, transparent 25% 50%, rgba(184, 90, 63, 0.08) 50% 75%, transparent 75% 100%);
  background-size: 100% 100%, 160px 160px;
  background-repeat: no-repeat, repeat;
  background-position: 0 0, 0 0; }

/* ------------------------------------------------------------------
   Page loader — full-screen overlay with the B mark, animated out by GSAP.
------------------------------------------------------------------ */
.page-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center; }

.page-loader__mark {
  width: 80px;
  height: 80px;
  display: block; }

@media (prefers-reduced-motion: reduce) {
  .page-loader {
    display: none; } }

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  margin: 0 0 1rem; }

a {
  color: #c7a35a; }

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

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem; }
  @media (min-width: 768px) {
    .container {
      padding-left: 2rem;
      padding-right: 2rem; } }

.site-header {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px) saturate(140%);
  -webkit-backdrop-filter: blur(6px) saturate(140%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100; }
  .site-header__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    min-height: 48px; }
  .site-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #2a2724;
    text-decoration: none;
    line-height: 1;
    transition: opacity 0.2s ease; }
    .site-header__brand img {
      max-height: 48px;
      width: auto;
      display: block; }
    .site-header__brand:hover {
      opacity: 0.8; }
  .site-header__mark {
    width: 44px;
    height: 44px;
    display: block;
    flex-shrink: 0; }
  .site-header__wordmark {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1; }
  .site-header__name {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 500;
    font-style: normal;
    color: #2a2724;
    letter-spacing: 0.005em;
    line-height: 1.05; }
  .site-header__tagline {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #b85a3f;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    line-height: 1; }
  .site-header__nav {
    flex: 1;
    display: flex;
    justify-content: center; }
  .site-header__cta {
    background: #b85a3f;
    color: #fff;
    padding: 11px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap; }
    .site-header__cta:hover,
    .site-header__cta:focus {
      background-color: #b85a3f;
      background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.18) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0.18) 75%, transparent 75%, transparent);
      background-size: 40px 40px;
      animation: button-stripe-spin 1.5s linear infinite;
      color: #fff;
      outline: none; }
  .site-header__toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    margin-left: auto; }
    .site-header__toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: #2a2724;
      transition: transform 0.2s ease, opacity 0.2s ease; }
  .site-header.is-open .site-header__toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg); }
  .site-header.is-open .site-header__toggle span:nth-child(2) {
    opacity: 0; }
  .site-header.is-open .site-header__toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg); }

.site-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem; }
  .site-nav a {
    color: #2a2724;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 0.15s ease;
    padding: 4px 0; }
  .site-nav a:hover {
    color: #c7a35a; }
  .site-nav .current-menu-item > a,
  .site-nav .current_page_item > a {
    color: #c7a35a; }

@media (max-width: 768px) {
  .site-header__toggle {
    display: flex; }
  .site-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 1rem 2rem 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-top: 1px solid #e5e1d8;
    justify-content: flex-start; }
  .site-header.is-open .site-header__nav {
    display: flex; }
  .site-header__cta {
    display: none; }
  .site-header--no-menu .site-header__cta {
    display: inline-block;
    margin-left: auto; }
  .site-nav {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    width: 100%; } }

.site-header--no-menu .site-header__cta {
  margin-left: auto; }

.site-footer {
  background: #1f1d1a;
  color: rgba(255, 255, 255, 0.5);
  padding: 1rem 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.04em; }
  .site-footer p {
    margin: 0; }

.site-main {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 4rem 1rem; }
  @media (min-width: 768px) {
    .site-main {
      padding: 4rem 2rem; } }
  .site-main > h1:first-child {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    color: #2a2724;
    margin: 0 0 2rem;
    letter-spacing: -0.01em;
    line-height: 1.1; }

.entry-content {
  font-size: 16px;
  line-height: 1.7;
  color: #2a2724;
  margin-bottom: 2rem; }
  .entry-content p {
    margin: 0 0 1rem; }
  .entry-content p:last-child {
    margin-bottom: 0; }
  .entry-content a {
    color: #c7a35a;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: filter 0.15s ease; }
    .entry-content a:hover {
      filter: brightness(0.85);
      text-decoration-thickness: 2px; }
  .entry-content h2 {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
    font-weight: 500;
    margin: 2rem 0 1rem;
    line-height: 1.2; }
  .entry-content h3 {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin: 2rem 0 0.5rem;
    line-height: 1.2; }
  .entry-content ul,
  .entry-content ol {
    margin: 0 0 1rem;
    padding-left: 2rem; }
    .entry-content ul li,
    .entry-content ol li {
      margin-bottom: 0.25rem; }
  .entry-content blockquote {
    border-left: 3px solid #c7a35a;
    padding-left: 1rem;
    margin: 2rem 0;
    font-style: italic;
    color: #7a7569; }
  .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px; }

.site-main--card {
  max-width: 100%;
  padding: 0;
  margin: 0; }

/* ------------------------------------------------------------------
   Hero — two-column on desktop, stacked on mobile.
   No overlap with the gallery; photo sits within the hero's own padding.
------------------------------------------------------------------ */
.card-hero {
  padding: 4rem 0 2rem; }
  @media (min-width: 768px) {
    .card-hero {
      padding: 8rem 0 4rem; } }
  .card-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem; }
    @media (min-width: 768px) {
      .card-hero__inner {
        flex-direction: row-reverse;
        justify-content: flex-end;
        align-items: center;
        gap: 4rem; } }
  .card-hero__content {
    text-align: center;
    max-width: 540px; }
    @media (min-width: 768px) {
      .card-hero__content {
        text-align: left;
        flex: 1;
        max-width: none; } }
  .card-hero__headline {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(1.875rem, 4.5vw, 3rem);
    font-weight: 500;
    font-style: normal;
    line-height: 1.15;
    letter-spacing: 0;
    text-transform: none;
    color: #2a2724;
    margin: 0 0 1rem; }
  .card-hero__intro {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1rem;
    color: #7a7569;
    line-height: 1.7;
    margin: 0 0 2rem; }
    .card-hero__intro p {
      margin: 0 0 0.5rem; }
      .card-hero__intro p:last-child {
        margin-bottom: 0; }
  .card-hero__cta {
    display: inline-block;
    background: #b85a3f;
    color: #fff;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase; }
    .card-hero__cta:hover,
    .card-hero__cta:focus {
      background-color: #b85a3f;
      background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.18) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0.18) 75%, transparent 75%, transparent);
      background-size: 40px 40px;
      animation: button-stripe-spin 1.5s linear infinite;
      color: #fff;
      outline: none; }
  .card-hero__photo {
    width: 100%;
    max-width: 320px; }
    @media (min-width: 768px) {
      .card-hero__photo {
        max-width: 340px;
        flex-shrink: 0; } }
    .card-hero__photo img {
      width: 100%;
      height: auto;
      border-radius: 4px;
      object-fit: cover;
      aspect-ratio: 1;
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
      border: 4px solid #b85a3f; }

/* ------------------------------------------------------------------
   Shared button hover — barber-pole stripe animation
   Used by hero CTA, header CTA, and contact form submit.
------------------------------------------------------------------ */
@keyframes button-stripe-spin {
  from {
    background-position: 0 0; }
  to {
    background-position: 40px 0; } }

@media (prefers-reduced-motion: reduce) {
  .card-hero__cta:hover,
  .card-hero__cta:focus,
  .site-header__cta:hover,
  .site-header__cta:focus,
  .contact-form__submit:hover,
  .contact-form__submit:focus {
    animation: none; } }

/* ------------------------------------------------------------------
   Gallery — GSAP-driven drag scroller with prev/next arrows
   Drag/swipe on touch + arrows on desktop. See assets/js/animations.js.
------------------------------------------------------------------ */
.card-gallery {
  padding: 2rem 0;
  position: relative; }
  @media (min-width: 768px) {
    .card-gallery {
      padding: 4rem 0; } }
  .card-gallery__viewport {
    overflow: hidden;
    padding: 0 1rem; }
    @media (min-width: 768px) {
      .card-gallery__viewport {
        padding: 0 2rem; } }
  .card-gallery__track {
    display: flex;
    gap: 1rem;
    cursor: grab;
    will-change: transform;
    user-select: none;
    touch-action: pan-y; }
    .card-gallery__track.is-dragging {
      cursor: grabbing; }
    .card-gallery__track img {
      -webkit-user-drag: none;
      user-drag: none;
      pointer-events: none; }
  .card-gallery__item {
    flex: 0 0 80%;
    margin: 0; }
    @media (min-width: 768px) {
      .card-gallery__item {
        flex: 0 0 40%; } }
    @media (min-width: 1024px) {
      .card-gallery__item {
        flex: 0 0 28%; } }
    .card-gallery__item img {
      width: 100%;
      height: auto;
      aspect-ratio: 3 / 4;
      object-fit: cover;
      border-radius: 4px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      display: block; }
  .card-gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5e1d8;
    color: #2a2724;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease; }
    @media (min-width: 768px) {
      .card-gallery__arrow {
        display: flex; } }
    .card-gallery__arrow svg {
      display: block; }
    .card-gallery__arrow:hover:not(:disabled),
    .card-gallery__arrow:focus:not(:disabled) {
      background: #c7a35a;
      color: #ffffff;
      border-color: #c7a35a;
      outline: none; }
    .card-gallery__arrow:disabled {
      opacity: 0.3;
      cursor: not-allowed; }
    .card-gallery__arrow--prev {
      left: 1rem; }
      @media (min-width: 768px) {
        .card-gallery__arrow--prev {
          left: 2rem; } }
    .card-gallery__arrow--next {
      right: 1rem; }
      @media (min-width: 768px) {
        .card-gallery__arrow--next {
          right: 2rem; } }

/* ------------------------------------------------------------------
   Services section — service-list/service-group styles in _services.scss
------------------------------------------------------------------ */
.card-services {
  padding: 2rem 0; }
  @media (min-width: 768px) {
    .card-services {
      padding: 4rem 0; } }
  .card-services__inner {
    max-width: 720px; }

/* ------------------------------------------------------------------
   Book section
------------------------------------------------------------------ */
.card-book {
  padding: 2rem 1rem;
  background: #b85a3f; }
  @media (min-width: 768px) {
    .card-book {
      padding: 4rem 2rem; } }
  .card-book__inner {
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); }
    @media (min-width: 768px) {
      .card-book__inner {
        padding: 4rem; } }
  .card-book__heading {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    margin: 0 0 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #2a2724; }
  .card-book__intro {
    text-align: center;
    color: #7a7569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 auto 2rem;
    max-width: 440px; }

.contact-form {
  max-width: 640px;
  margin: 0 auto; }
  .contact-form__honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden; }
  .contact-form__row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 1rem; }
    .contact-form__row label {
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      font-size: 12px;
      color: #2a2724;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase; }
      .contact-form__row label .required {
        color: #b85a3f;
        margin-left: 2px; }
    .contact-form__row input,
    .contact-form__row select,
    .contact-form__row textarea {
      padding: 11px 14px;
      border: 1px solid #e5e1d8;
      border-radius: 6px;
      font-size: 16px;
      line-height: 1.4;
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      background: #fbf6ed;
      width: 100%;
      color: #2a2724;
      box-sizing: border-box;
      transition: border-color 0.15s ease, box-shadow 0.15s ease; }
      .contact-form__row input::placeholder,
      .contact-form__row select::placeholder,
      .contact-form__row textarea::placeholder {
        color: #7a7569; }
      .contact-form__row input:focus,
      .contact-form__row select:focus,
      .contact-form__row textarea:focus {
        border-color: #c7a35a;
        box-shadow: 0 0 0 3px rgba(199, 163, 90, 0.2);
        outline: none; }
    .contact-form__row input[type="datetime-local"] {
      -webkit-appearance: none;
      appearance: none;
      min-height: 46px;
      display: block;
      text-align: left; }
      .contact-form__row input[type="datetime-local"]::-webkit-date-and-time-value {
        text-align: left;
        min-height: 1.4em; }
    .contact-form__row textarea {
      resize: vertical;
      min-height: 120px; }
  .contact-form__row-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem; }
    @media (max-width: 640px) {
      .contact-form__row-pair {
        grid-template-columns: 1fr; } }
  .contact-form__hint {
    margin: -2px 0 8px;
    font-size: 12px;
    color: #7a7569;
    letter-spacing: 0.02em;
    text-transform: none;
    font-weight: 400; }
  .contact-form__times {
    display: flex;
    flex-direction: column;
    gap: 12px; }
  .contact-form__actions {
    margin-top: 1rem;
    text-align: center; }
    @media (min-width: 640px) {
      .contact-form__actions {
        text-align: left; } }
  .contact-form__submit {
    background: #b85a3f;
    border: 0;
    color: #fff;
    padding: 13px 32px;
    border-radius: 8px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer; }
    .contact-form__submit:hover,
    .contact-form__submit:focus {
      background-color: #b85a3f;
      background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.18) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0.18) 75%, transparent 75%, transparent);
      background-size: 40px 40px;
      animation: button-stripe-spin 1.5s linear infinite;
      color: #fff;
      outline: none; }
    .contact-form__submit:disabled {
      opacity: 0.5;
      cursor: not-allowed; }
  .contact-form__message {
    padding: 12px 16px;
    border-radius: 6px;
    margin-top: 1rem;
    font-size: 14px; }
    .contact-form__message--success {
      background: rgba(199, 163, 90, 0.12);
      color: #b85a3f;
      border: 1px solid rgba(199, 163, 90, 0.4); }
    .contact-form__message--error {
      background: rgba(168, 50, 50, 0.06);
      color: #a83232;
      border: 1px solid rgba(168, 50, 50, 0.25); }

/* ------------------------------------------------------------------
   Category group — used in the home page services section
------------------------------------------------------------------ */
.service-group {
  margin-bottom: 4rem; }
  .service-group__heading {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #b85a3f;
    margin: 0 0 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #b85a3f; }
  .service-group__description {
    color: #7a7569;
    font-size: 14px;
    margin: -1.25rem 0 2rem;
    font-style: italic; }

/* ------------------------------------------------------------------
   Service list — barber-shop menu style with dot leaders
------------------------------------------------------------------ */
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem; }

.service-item__row {
  display: flex;
  align-items: baseline;
  gap: 12px; }
  @media (max-width: 640px) {
    .service-item__row {
      flex-direction: column;
      align-items: flex-start;
      gap: 4px; } }

.service-item__name {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.375rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #2a2724;
  margin: 0;
  line-height: 1.3; }

.service-item__leader {
  flex: 1 1 auto;
  border-bottom: 1px dotted #7a7569;
  margin-bottom: 0.4em;
  min-width: 24px;
  opacity: 0.5; }
  @media (max-width: 640px) {
    .service-item__leader {
      display: none; } }

.service-item__meta {
  flex: 0 0 auto;
  white-space: nowrap;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.95rem;
  color: #2a2724; }

.service-item__price {
  color: #b85a3f;
  font-weight: 600; }

.service-item__description {
  margin: 0.25rem 0 0;
  color: #7a7569;
  font-size: 0.95rem;
  line-height: 1.5; }

.services-empty {
  text-align: center;
  color: #7a7569;
  font-style: italic;
  padding: 4rem 0; }
