:root {
  --ink: #20160f;
  --muted: #74695e;
  --soft: #fbf6ec;
  --surface: #fffdf8;
  --line: rgba(32, 22, 15, 0.1);
  --gold: #d8a93b;
  --gold-soft: #f3d985;
  --shadow: 0 28px 70px rgba(42, 29, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, Arial, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px clamp(22px, 5vw, 76px);
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  color: #4a4036;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  border-color: var(--gold);
}

.nav-button,
.booking-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #21160f;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(216, 169, 59, 0.22);
}

.hero {
  width: min(1536px, 100%);
  margin: 0 auto;
  background: var(--soft);
}

.hero img {
  width: 100%;
  height: auto;
}

.intro,
.signature,
.about,
.booking {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.72fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: end;
  padding: clamp(76px, 10vw, 132px) 0 clamp(54px, 7vw, 86px);
}

.section-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--ink);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  margin-bottom: 0;
}

h2 {
  margin-bottom: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.intro > p,
.about-copy > p,
.booking p,
.braid-style p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.signature {
  padding: clamp(56px, 8vw, 106px) 0;
}

.section-heading {
  margin-bottom: clamp(36px, 5vw, 62px);
}

.braid-showcase {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  align-items: end;
}

.braid-style {
  position: relative;
  min-width: 0;
  text-align: center;
}

.braid-style figure {
  display: grid;
  place-items: end center;
  height: clamp(260px, 28vw, 390px);
  margin: 0 0 26px;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 72%, rgba(216, 169, 59, 0.14), transparent 46%),
    linear-gradient(180deg, rgba(251, 246, 236, 0), rgba(251, 246, 236, 0.72));
}

.braid-style img {
  width: min(100%, 230px);
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(42, 29, 18, 0.14));
  transform-origin: center bottom;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.braid-style:hover,
.braid-style:focus-within {
  z-index: 5;
}

.braid-style:hover img,
.braid-style:focus-within img {
  transform: translateY(-14px) scale(1.09);
  filter: drop-shadow(0 28px 38px rgba(42, 29, 18, 0.24));
}

.braid-style h3,
.braid-style p {
  transition: transform 220ms ease;
}

.braid-style:hover h3,
.braid-style:hover p,
.braid-style:focus-within h3,
.braid-style:focus-within p {
  transform: translateY(-4px);
}

.braid-style p {
  max-width: 210px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.55;
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  gap: clamp(38px, 7vw, 92px);
  align-items: center;
  padding: clamp(70px, 9vw, 118px) 0;
  border-top: 1px solid var(--line);
}

.about-image {
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
}

.about-copy h2 {
  margin-bottom: 26px;
}

.care-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.care-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.booking {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  margin-bottom: 72px;
  padding: clamp(36px, 6vw, 66px);
  border-radius: 8px;
  background: var(--soft);
}

.booking h2 {
  margin-bottom: 20px;
}

.booking p {
  max-width: 560px;
  margin-bottom: 0;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.booking-actions a:last-child {
  background: #21160f;
  color: #fffdf8;
  box-shadow: none;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .intro,
  .about,
  .booking {
    grid-template-columns: 1fr;
  }

  .braid-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 46px;
  }

  .booking-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand small,
  .nav-button {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 16px;
  }

  .intro,
  .signature,
  .about,
  .booking {
    width: min(100% - 32px, 1180px);
  }

  h1,
  h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .braid-showcase {
    grid-template-columns: 1fr;
  }

  .braid-style figure {
    height: 360px;
  }

  .booking-actions,
  .booking-actions a {
    width: 100%;
  }
}

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

  .braid-style img,
  .braid-style h3,
  .braid-style p {
    transition: none;
  }
}
