:root {
  --bg-main: #fcf8f3;
  --bg-soft: #f6efe8;
  --surface: #ffffff;
  --text-strong: #312d33;
  --text-body: #57505a;
  --text-soft: #726976;
  --accent: #b88992;
  --accent-deep: #a4747e;
  --border: #e8ddd8;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-soft: 0 20px 44px rgba(60, 44, 52, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-body);
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  line-height: 1.62;
}

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

h1,
h2,
h3,
strong {
  margin: 0;
  color: var(--text-strong);
  font-family: "Palatino Linotype", "Book Antiqua", Garamond, serif;
  letter-spacing: 0.01em;
}

p,
ul {
  margin: 0;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.eyebrow {
  margin-bottom: 0.95rem;
  color: var(--text-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(252, 248, 243, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #c398a0 0%, #a87681 100%);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand strong {
  display: block;
  font-size: 1.02rem;
}

.brand small {
  display: block;
  color: var(--text-soft);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem;
}

.site-nav a {
  color: var(--text-body);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.76rem 1.32rem;
  font-size: 0.92rem;
  font-weight: 700;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-deep);
}

.btn-secondary {
  border-color: var(--border);
  color: var(--text-body);
  background: #fff9;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--accent);
  color: var(--text-strong);
}

.hero {
  padding: 5.8rem 0 5.2rem;
  background:
    radial-gradient(circle at 84% 18%, rgba(184, 137, 146, 0.24), transparent 39%),
    linear-gradient(160deg, #fffdfb 0%, #f7efe8 64%, #f1e7de 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: 2.4rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 5.1vw, 3.65rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

.hero-copy p {
  color: var(--text-body);
  max-width: 56ch;
}

.hero-actions {
  margin-top: 1.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
}

.hero-note {
  margin-top: 1.15rem;
  color: var(--text-soft);
  font-size: 0.93rem;
}

.hero-editorial {
  position: relative;
  padding: 1rem 0;
}

.editorial-main {
  background: linear-gradient(160deg, #fffefc 0%, #fff 50%, #fbf1f2 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.45rem 1.7rem;
  box-shadow: var(--shadow-soft);
}

.editorial-label {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--accent-deep);
  font-weight: 700;
}

.editorial-main h2 {
  margin: 0.55rem 0 0.7rem;
  font-size: clamp(1.32rem, 2.3vw, 1.78rem);
  line-height: 1.28;
}

.editorial-main p {
  color: var(--text-soft);
}

.editorial-main ul {
  margin-top: 1.05rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.56rem;
}

.editorial-main li {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  padding: 0.45rem 0.78rem;
  color: var(--text-body);
  font-size: 0.89rem;
}

.editorial-float {
  position: absolute;
  right: -0.8rem;
  bottom: -1.15rem;
  width: min(260px, 84%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  box-shadow: 0 16px 28px rgba(59, 44, 52, 0.1);
}

.float-label {
  font-size: 0.71rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-deep);
  font-weight: 700;
}

.float-title {
  margin-top: 0.28rem;
  color: var(--text-strong);
  font-size: 0.92rem;
  font-weight: 600;
}

.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: clamp(1.72rem, 3.1vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 0.55rem;
}

.section-header p {
  color: var(--text-soft);
}

.services {
  background: var(--surface);
}

.services-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: start;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.menu-group {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.05rem 1rem;
  background: linear-gradient(180deg, #fff 0%, #fdf8f7 100%);
}

.menu-group h3 {
  font-size: 1.16rem;
  margin-bottom: 0.7rem;
}

.menu-group ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.58rem;
}

.menu-group li {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  border-top: 1px solid #eee4e1;
  padding-top: 0.56rem;
  font-size: 0.9rem;
}

.menu-group span {
  color: var(--text-body);
}

.menu-group em {
  font-style: normal;
  color: var(--text-soft);
  white-space: nowrap;
}

.menu-aside {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, #f8eeef 0%, #f4e7e8 48%, #f9f2eb 100%);
  padding: 1.35rem;
  min-height: 100%;
}

.menu-aside-eyebrow {
  color: var(--accent-deep);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.menu-aside h3 {
  margin: 0.55rem 0 0.62rem;
  font-size: 1.42rem;
  line-height: 1.26;
}

.menu-aside p {
  color: var(--text-body);
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent-deep);
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.gallery {
  background: var(--bg-main);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.9rem;
  grid-auto-rows: 110px;
}

.gallery-tile {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(51, 38, 47, 0.07);
}

.gallery-tile p {
  position: absolute;
  left: 0.8rem;
  bottom: 0.65rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.24);
}

.tile-a {
  grid-column: 1 / 6;
  grid-row: 1 / 4;
  background: linear-gradient(145deg, #a7848b 0%, #7a6369 100%);
}

.tile-b {
  grid-column: 6 / 10;
  grid-row: 1 / 3;
  background: linear-gradient(145deg, #d2ad91 0%, #b79177 100%);
}

.tile-c {
  grid-column: 10 / 13;
  grid-row: 1 / 4;
  background: linear-gradient(155deg, #d3bfc1 0%, #a48b8f 100%);
}

.tile-d {
  grid-column: 6 / 10;
  grid-row: 3 / 5;
  background: linear-gradient(150deg, #93807d 0%, #66575a 100%);
}

.tile-e {
  grid-column: 1 / 6;
  grid-row: 4 / 5;
  background: linear-gradient(150deg, #bea1a5 0%, #8d757a 100%);
}

.experience {
  background: linear-gradient(180deg, #fff 0%, #f8f0eb 100%);
}

.experience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.4rem;
}

.experience-intro p {
  color: var(--text-soft);
}

.experience-list {
  display: grid;
  gap: 0.85rem;
}

.experience-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 1rem 1rem 1rem 1.08rem;
  position: relative;
}

.experience-item::before {
  content: "";
  position: absolute;
  left: -0.38rem;
  top: 1.05rem;
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px #f5e8ea;
}

.experience-item h3 {
  font-size: 1.13rem;
  margin-bottom: 0.34rem;
}

.experience-item p {
  color: var(--text-soft);
}

.about {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.5rem;
  align-items: center;
}

.about-photo {
  width: 100%;
  min-height: 340px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.8), transparent 40%),
    linear-gradient(160deg, #c3a8ac 0%, #a68f93 52%, #7f7079 100%);
  box-shadow: var(--shadow-soft);
}

.about-caption {
  margin-top: 0.7rem;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.about-copy h2 {
  font-size: clamp(1.72rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.about-copy p {
  color: var(--text-body);
}

.about-copy p + p {
  margin-top: 0.9rem;
}

.testimonials {
  background: var(--bg-soft);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 0.9rem;
}

.testimonial {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 1.15rem 1.1rem;
}

.testimonial p {
  color: var(--text-body);
}

.testimonial h3 {
  margin-top: 0.85rem;
  color: var(--text-soft);
  font-size: 0.96rem;
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  letter-spacing: 0.01em;
}

.booking {
  background:
    radial-gradient(circle at 88% 10%, rgba(184, 137, 146, 0.3), transparent 34%),
    linear-gradient(160deg, #f7eeeb 0%, #f2e6e6 60%, #f7f1ea 100%);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.35rem;
  align-items: center;
}

.booking-grid h2 {
  font-size: clamp(1.68rem, 2.9vw, 2.45rem);
  line-height: 1.2;
  margin-bottom: 0.58rem;
}

.booking-grid p {
  color: var(--text-body);
}

.booking-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fffefe;
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
}

.booking-card p + p {
  margin-top: 0.42rem;
}

.booking-card .btn {
  margin-top: 1rem;
}

.site-footer {
  background: #2f2931;
  color: #ece3e6;
  padding-top: 2.7rem;
}

.site-footer h2,
.site-footer h3 {
  color: #fff9fb;
  font-family: "Palatino Linotype", "Book Antiqua", Garamond, serif;
}

.site-footer h2 {
  font-size: 1.2rem;
  margin-bottom: 0.48rem;
}

.site-footer h3 {
  font-size: 0.95rem;
  margin-bottom: 0.56rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1.25rem;
  padding-bottom: 1.8rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.34rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.95rem 0 1.3rem;
  color: #d9cfd4;
  font-size: 0.88rem;
}

@media (max-width: 1020px) {
  .header-row {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .hero-grid,
  .services-layout,
  .experience-grid,
  .about-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

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

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

  .editorial-float {
    position: static;
    margin-top: 0.8rem;
    width: 100%;
  }

  .section {
    padding: 5rem 0;
  }
}

@media (max-width: 720px) {
  .site-nav {
    width: 100%;
    gap: 0.8rem;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 4.7rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 130px;
  }

  .tile-a,
  .tile-b,
  .tile-c,
  .tile-d,
  .tile-e {
    grid-column: auto;
    grid-row: auto;
  }

  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-actions .btn {
    width: auto;
  }
}
