:root {
  --font-base: "Jost", sans-serif;
  --font-title: "Cormorant Garamond", serif;

  --fz-base: 16px;

  --color-white: #ffffff;
  --color-text: #1f1f1f;
  --color-primary: #ee946f;
  --color-primary-hover: #e07f57;
  --color-overlay: rgba(0, 0, 0, 0.42);
  --color-header-bg: rgba(32, 22, 18, 0.58);
  --color-header-border: rgba(255, 255, 255, 0.08);

  --container-width: 1320px;
  --header-height-desktop: 90px;
  --header-height-tablet: 82px;
  --header-height-mobile: 76px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --transition: all 0.3s ease;
  --shadow-sm: 0 8px 30px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--fz-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  border: none;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--container-width));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-header-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-header-border);
  transition: var(--transition);
}

.site-header.is-scrolled {
  background: rgba(20, 14, 12, 0.88);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.header-inner {
  min-height: var(--header-height-desktop);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  width: 140px;
  height: 64px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 42px;
}

.desktop-nav a {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  font-family: var(--font-title);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: var(--color-primary);
  transition: var(--transition);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-radius: 0;
}

.btn-booking:hover {
  background: var(--color-primary-hover);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: var(--color-white);
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: rgba(20, 14, 12, 0.96);
  transition: max-height 0.35s ease;
}

.mobile-menu.open {
  max-height: 420px;
}

.mobile-menu-inner {
  padding: 0 16px 18px;
}

.mobile-menu ul {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu a {
  display: block;
  color: var(--color-white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1rem;
  font-weight: 500;
}

/* Hero Banner */
.hero-banner {
  position: relative;
}

.heroSwiper,
.heroSwiper .swiper-slide,
.hero-slide {
  width: 100%;
  height: 80vh;
  min-height: 720px;
}

.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content h1,
.hero-content h2 {
  font-family: var(--font-title);
  color: var(--color-white);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.2px;
  max-width: 900px;
}

.hero-content h1,
.hero-content h2 {
  font-size: clamp(3rem, 5.4vw, 5.5rem);
}

.heroSwiper .swiper-pagination {
  bottom: 28px !important;
}

.heroSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.heroSwiper .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

/* Tablet */
@media (max-width: 1024px) {
  .header-inner {
    min-height: var(--header-height-tablet);
  }

  .desktop-nav ul {
    gap: 24px;
  }

  .desktop-nav a {
    font-size: 0.95rem;
  }

  .btn-booking {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .heroSwiper,
  .heroSwiper .swiper-slide,
  .hero-slide {
    min-height: 640px;
  }

  .hero-content h1,
  .hero-content h2 {
    max-width: 760px;
  }
}

/* Mobile + Tablet menu style */
@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-inner {
    justify-content: space-between;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .container {
    width: min(100% - 24px, var(--container-width));
  }

  .header-inner {
    min-height: var(--header-height-mobile);
    gap: 10px;
  }

  .logo img {
    width: 100px;
    height: 52px;
  }

  .header-actions {
    gap: 10px;
  }

  .btn-booking {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 0.75rem;
    letter-spacing: 0.2px;
    white-space: nowrap;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .heroSwiper,
  .heroSwiper .swiper-slide,
  .hero-slide {
    height: 600px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(2.3rem, 10vw, 3.5rem);
    max-width: 92%;
  }

  .heroSwiper .swiper-pagination {
    bottom: 20px !important;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .btn-booking {
    padding: 9px 12px;
    font-size: 0.72rem;
  }

  .heroSwiper,
  .heroSwiper .swiper-slide,
  .hero-slide {
    min-height: 520px;
  }
}

/* SECTION */
.nail-hero {
  position: relative;
  overflow: hidden;
  /* background: linear-gradient(90deg,#f7eeee 0%,#f9f4f4 100%); */
  padding: 20px 0 20px;

  background-size: cover;
  background-repeat: no-repeat;
}

/* layout */
.nail-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
  min-height: 760px;
  height: 100%;
  margin-top: 30px;
}

/* curved background lines */
.nail-hero__bg-lines {
  position: absolute;
  border: 1px solid #d9d0d0;
  border-radius: 50%;
  pointer-events: none;
}

.nail-hero__bg-lines.line-1 {
  width: 780px;
  height: 780px;
  top: -420px;
  left: -210px;
}

.nail-hero__bg-lines.line-2 {
  width: 920px;
  height: 920px;
  right: -360px;
  bottom: -500px;
}



/* LEFT CONTENT */

.nail-hero__content {
  max-width: 650px;
  padding-top: 20px;
}

.nail-hero__eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  color: #f05b33;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nail-hero__title {
  margin: 0 0 22px;
  font-family: var(--font-title);
  font-size: 88px;
  line-height: .98;
  font-weight: 500;
}

.nail-hero__desc {
  max-width: 640px;
  margin: 0 0 34px;
  line-height: 1.7;
  color: #454545;
}

.nail-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 26px;
  background: #ef8258;
  color: #fff;
  font-size: 22px;
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.nail-hero__btn::after {

  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .25);
  transform: skewX(-20deg);
  transition: .6s;

}

.nail-hero__btn:hover::after {
  left: 120%;
}

.nail-hero__btn:hover {
  background: #e46f42;
}

/* thumbnails */

.nail-hero__thumbs {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-top: 58px;
}

.thumb-card {
  display: block;
  width: 185px;
  height: 122px;
  overflow: hidden;
  transition: .35s;
}

.thumb-card:hover {
  transform: translateY(-4px);
}

.thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-card {
  border-radius: 70px;
}

/* services link */

.nail-hero__services {
  display: flex;
  justify-content: center;
  margin-top: 22px;
  max-width: 590px;
}

.services-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 2px solid #ef8258;
  padding-bottom: 6px;
}

.services-link .arrow {
  font-size: 18px;
}

/* RIGHT IMAGE */

.nail-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 760px;
}

.nail-hero__image-wrap {
  position: relative;
  width: min(100%, 430px);
  border: 1.5px solid #1e1e1e;
  border-top-left-radius: 230px;
  border-top-right-radius: 230px;
  overflow: hidden;
  background: #fff;
  padding: 16px 16px 0;
}

.nail-hero__image-wrap-2 {
  position: relative;
  width: min(100%, 430px);
  overflow: hidden;
  padding: 16px 16px 0;
}

.nail-hero__image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-top-left-radius: 210px;
  border-top-right-radius: 210px;
}

.nail-hero__image-2 {
  width: 100%;
  /* height: 490px; */
  object-fit: cover;
  border-radius: 10px;
}


.hero-banner .nail-hero__image-2 {

  width: 325px;
  object-fit: cover;
  border-radius: 10px;
}

/* outer frame */

.hero-frame-decor {
  position: absolute;
  top: 86px;
  left: 50%;
  transform: translateX(-50%);
  width: 470px;
  height: 600px;
  border: 2px solid rgba(0, 0, 0, .55);
  border-bottom: none;
  border-top-left-radius: 250px;
  border-top-right-radius: 250px;
}


/* stars */

.spark {
  position: absolute;
  color: #2b2b2b;
  font-size: 28px;
}

.spark-1 {
  top: 28px;
  left: 26%;
}

.spark-2 {
  top: 190px;
  left: 11%;
}

.spark-3 {
  top: 52px;
  right: 22%;
}

/* leaf */

.leaf-decor {
  position: absolute;
  left: 42px;
  bottom: 18px;
  width: 150px;
}

.leaf-decor-2 {
  position: absolute;
  bottom: 70px;
  width: 200px;
  right: 0;
}

/* ================= */
/* RESPONSIVE */
/* ================= */

@media(max-width:1024px) {

  .nail-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }

  .nail-hero__content {
    order: 2;
    max-width: 100%;
  }

  .nail-hero__visual {
    order: 1;
    min-height: auto;
  }
.hero-banner .nail-hero__content {
    order: 1;
    max-width: 100%;
  }
 .hero-banner .nail-hero__visual {
    order: 2;
    min-height: auto;
  }
  .nail-hero__services {
    justify-content: flex-start;
    max-width: 100%;
  }

}

@media(max-width:767px) {

  .nail-hero {
    /* padding: 60px 0; */
    background-position: center;

  }

  .nail-hero__title {
    font-size: clamp(40px, 14vw, 62px);
  }

  .nail-hero__thumbs {
    margin-top: 36px;
    gap: 12px;
  }

  .thumb-card,
  .thumb-card:nth-child(2) {
    width: calc(33.333% - 8px);
    height: 95px;
    border-radius: 28px;
  }

  .nail-hero__image {
    height: 430px;
  }

  /* Nail Hero Section Styles */
  .nail-hero__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nail-hero__content {
    align-items: center;
  }

  .nail-hero__visual {
    /* display: none; */
  }
}

/* reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s cubic-bezier(.2, .65, .3, 1);
  transition-delay: var(--d, 0ms);
}

.reveal.show {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: all 1s cubic-bezier(.2, .65, .3, 1);
}

.reveal-right.show {
  opacity: 1;
  transform: none;
}

.spark {
  animation: floatSpark 4s ease-in-out infinite;
}

.spark-2 {
  animation-delay: 1s;
}

.spark-3 {
  animation-delay: 2s;
}

@keyframes floatSpark {

  0% {
    transform: translateY(0);
    opacity: .7;
  }

  50% {
    transform: translateY(-12px);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: .7;
  }

}

.thumb-card {
  transition: .45s cubic-bezier(.2, .65, .3, 1);
}

.thumb-card:hover {
  transform: translateY(-8px) scale(1.05);
}

.thumb-card img {
  transition: .6s ease;
}

.thumb-card:hover img {
  transform: scale(1.1);
}

.nail-hero__rating {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.nail-hero__rating-score {
  display: flex;
  align-items: flex-end;
  line-height: 1;
  color: #111;
  font-family: var(--font-title);
  white-space: nowrap;
}

.nail-hero__rating-score .score-main {
  font-size: 88px;
  font-weight: 500;
  letter-spacing: -2px;
}

.nail-hero__rating-score .score-sub {
  font-size: 40px;
  font-weight: 500;
  transform: translateY(-6px);
}

.nail-hero__rating-divider {
  width: 1px;
  height: 100px;
  background: #1f1f1f;
  flex: 0 0 1px;
}

.nail-hero__rating-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nail-hero__stars {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e0a84b;
  font-size: 28px;
  line-height: 1;
}

.nail-hero__reviews {
  color: #111;
  font-size: 16px;
  font-weight: 600;
}

/* tablet */
@media (max-width: 991px) {
  .nail-hero__rating {
    gap: 22px;
    margin-top: 28px;
  }

  .nail-hero__rating-score .score-main {
    font-size: 72px;
  }

  .nail-hero__rating-score .score-sub {
    font-size: 34px;
    transform: translateY(-5px);
  }

  .nail-hero__rating-divider {
    height: 84px;
  }

  .nail-hero__stars {
    font-size: 24px;
    gap: 6px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .nail-hero__rating {
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .nail-hero__rating-score .score-main {
    font-size: 56px;
  }

  .nail-hero__rating-score .score-sub {
    font-size: 28px;
    transform: translateY(-3px);
  }

  .nail-hero__rating-divider {
    width: 100%;
    height: 1px;
  }

  .nail-hero__rating-info {
    gap: 10px;
  }

  .nail-hero__stars {
    font-size: 22px;
    gap: 5px;
  }

  .nail-hero__reviews {
    font-size: 15px;
  }
}

.what-we-do {
  position: relative;
  padding: 30px 0 30px;
  background-color: #f7f5f4;
  background-image: url('/assets/images/what-we-do-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* header */

.what-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
}

.what-eyebrow {
  display: block;
  font-size: 16px;
  letter-spacing: 2px;
  color: #d46b4b;
  margin-bottom: 14px;
}

.what-title {
  font-family: var(--font-title);
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.what-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* grid */

.what-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

/* item */

.what-item {
  text-align: center;
  padding: 20px 35px 50px;
  border-left: 1px solid #cfcfcf;
  position: relative;
}

.what-item:first-child {
  border-left: none;
}

.what-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  background: #222;
  opacity: .3;
}

/* icon */

.what-icon {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.what-icon img {
  max-height: 200px;
}

/* title */

.what-item-title {
  font-family: var(--font-title);
  font-size: 28px;
  margin-bottom: 14px;
}

/* desc */

.what-item-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* tablet */

@media(max-width:1024px) {

  .what-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .what-item {
    border-left: none;
    border-top: 1px solid #ccc;
  }

  .what-item:nth-child(1),
  .what-item:nth-child(2) {
    border-top: none;
  }

}

/* mobile */

@media(max-width:768px) {

  .what-we-do {
    padding: 30px 0;
    background-size: 220px auto;
  }

  .what-title {
    font-size: 42px;
  }

  .what-grid {
    grid-template-columns: 1fr;
  }

  .what-item {
    border-top: 1px solid #ccc;
  }

  .what-item:first-child {
    border-top: none;
  }

}

.cta-banner {
  position: relative;
  padding: 150px 0;
  background-color: #6d6d6d;
  background-image: url('/assets/images/cta-banner-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-banner__title {
  margin: 0 0 24px;
  font-family: var(--font-title);
  font-size: clamp(52px, 6vw, 108px);
  line-height: 0.95;
  font-weight: 500;
  color: #f7f3ef;
}

.cta-banner__desc {
  max-width: 780px;
  margin: 0 auto 34px;
  font-size: 22px;
  line-height: 1.8;
  color: #ffffff;
}

/* tablet */
@media (max-width: 1024px) {
  .cta-banner {
    padding: 120px 0;
    background-attachment: scroll;
  }

  .cta-banner__title {
    line-height: 1;
  }
}

/* mobile */
@media (max-width: 767px) {
  .cta-banner {
    padding: 90px 0;
  }

  .cta-banner__title {
    font-size: clamp(38px, 12vw, 62px);
    margin-bottom: 18px;
  }

  .cta-banner__desc {
    margin-bottom: 26px;
    line-height: 1.7;
  }
}

.testimonials {
  position: relative;
  padding: 120px 0;
  background: #f7f5f4;
  overflow: hidden;
}

/* leaves */

.testimonials-leaf {
  position: absolute;
  pointer-events: none;
}

.leaf-left {
  left: 80px;
  top: 140px;
  width: 120px;
}

.leaf-right {
  right: 60px;
  top: 220px;
  width: 220px;
}

/* header */

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-eyebrow {
  display: block;
  font-size: 16px;
  letter-spacing: 2px;
  color: #d46b4b;
  margin-bottom: 10px;
}

.testimonials-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
}

/* slider */

.testimonials-slider {
  margin-top: 30px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  padding: 26px;
  height: 100%;
}

/* top */

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}


.testimonial-avatar-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info {
  flex: 1;
  font-size: 14px;
}

.testimonial-info strong {
  display: block;
}

.testimonial-date {
  font-size: 12px;
  color: #777;
}

.google-icon {
  width: 20px;
}

/* stars */

.testimonial-stars {
  color: #f4a300;
  font-size: 18px;
  margin-bottom: 10px;
}

/* text */

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

/* swiper spacing */

.testimonials .swiper-slide {
  height: auto;
}

/* responsive */

@media(max-width:1024px) {

  .testimonials-title {
    font-size: 44px;
  }

}

@media(max-width:768px) {

  .leaf-left {
    left: -40px;
    opacity: .4;
  }

  .leaf-right {
    right: -60px;
    opacity: .4;
  }

}

.home-gallery {
  width: 100%;
  overflow: hidden;
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

/* hover effect */

.gallery-item:hover img {
  transform: scale(1.08);
}

/* giữ tỉ lệ giống thiết kế */

.gallery-item {
  aspect-ratio: 4 / 3;
}

/* tablet */

@media(max-width:1024px) {

  .home-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

/* mobile */

@media(max-width:768px) {

  .home-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


.cta-banner-book {
  position: relative;
  padding: 150px 0;
  background-image: url('/assets/images/cta-banner-book-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.cta-banner-book__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.cta-banner-book .container {
  position: relative;
  z-index: 2;
}

.cta-banner-book__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-banner-book__title {
  margin: 0 0 24px;
  font-family: var(--font-title);
  font-size: clamp(52px, 6vw, 108px);
  line-height: 0.95;
  font-weight: 500;
  color: #000;
}

.cta-banner-book__desc {
  max-width: 780px;
  margin: 0 auto 34px;
  font-size: 22px;
  line-height: 1.8;
  color: #000;
}

/* tablet */
@media (max-width: 1024px) {
  .cta-banner-book {
    padding: 120px 0;
    background-attachment: scroll;
  }

  .cta-banner-book__title {
    line-height: 1;
  }
}

/* mobile */
@media (max-width: 767px) {
  .cta-banner-book {
    padding: 90px 0;
  }

  .cta-banner-book__title {
    font-size: clamp(38px, 12vw, 62px);
    margin-bottom: 18px;
  }

  .cta-banner-book__desc {
    margin-bottom: 26px;
    line-height: 1.7;
  }
}

.site-footer-minimal {
  background: #f7f5f4;
  padding: 28px 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.site-footer-minimal__inner {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.4;
  color: #7d7d7d;
}

/* tablet */
@media (max-width: 991px) {
  .site-footer-minimal {
    padding: 24px 15px;
  }

  .site-footer-minimal__inner {
    font-size: 17px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .site-footer-minimal {
    padding: 20px 12px;
  }

  .site-footer-minimal__inner {
    font-size: 15px;
  }
}

.sub-banner {
  position: relative;
  padding: 160px 0 110px;
  background-image: url('/assets/images/sub-banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* overlay */

.sub-banner__overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg,
      #FFFFFF00 54%,
      #FFFFFF 100%);
}

/* leaf */

.sub-banner__leaf {
  position: absolute;
  left: 120px;
  width: 150px;
  pointer-events: none;
}

/* content */

.sub-banner .container {
  position: relative;
  z-index: 2;
}

.sub-banner__content {
  text-align: center;
}

.sub-banner__eyebrow {
  display: block;
  color: #e24c2a;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
}

.sub-banner__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 500;
  color: #555;
}

/* tablet */

@media(max-width:1024px) {

  .sub-banner {
    padding: 140px 0 90px;
  }

  .sub-banner__title {
    font-size: 44px;
  }

}

/* mobile */

@media(max-width:768px) {

  .sub-banner {
    padding: 120px 0 70px;
  }

  .sub-banner__leaf {
    left: 20px;
    top: 40px;
    width: 90px;
    opacity: .7;
  }

  .sub-banner__title {
    font-size: 32px;
  }

}

.contact-info-section {
  position: relative;
  padding: 22px 0 28px;
  overflow: hidden;
}



.contact-info-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 1.12fr;
  gap: 34px;
  align-items: start;
}

.contact-info-left {
  padding: 6px 0 0;
}

.sec-title {
  margin: 0 0 28px;
  font-size: 58px;
  line-height: 1;
  font-weight: 400;
  color: #111;
}

.info-block {
  margin-bottom: 52px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 30px 56px;
  max-width: 520px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: #1d1d1d;
}

.info-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ea6b4a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.info-item:hover .info-icon {
  transform: translateY(-2px);
  background: #e16040;
}

.info-text {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  color: #1b1b1b;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 560px;
}

.hours-row {
  display: grid;
  grid-template-columns: 105px 1fr auto;
  align-items: center;
  gap: 18px;
}

.hours-row .day,
.hours-row .time {
  font-size: 17px;
  line-height: 1.4;
  color: #111;
}

.hours-row .line {
  display: block;
  height: 1px;
  background: #ea6b4a;
  transform: translateY(2px);
}

.contact-info-map {
  height: 452px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.contact-info-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: saturate(0.95) contrast(1);
}

@media (max-width: 991px) {
  .contact-info-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info-map {
    height: 420px;
  }

  .sec-title {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .contact-info-section {
    padding: 20px 16px 24px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 100%;
  }

  .sec-title {
    font-size: 40px;
    margin-bottom: 22px;
  }

  .hours-row {
    grid-template-columns: 90px 1fr;
    gap: 10px 14px;
  }

  .hours-row .time {
    grid-column: 2 / 3;
  }

  .hours-row .line {
    display: none;
  }

  .contact-info-map {
    height: 340px;
  }

  .info-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    font-size: 27px;
  }

  .info-text,
  .hours-row .day,
  .hours-row .time {
    font-size: 16px;
  }
}

.services-highlight {
  position: relative;
  padding: 120px 0;
  background: #f7f5f4;
  overflow: hidden;
}

/* decor icons */

.services-decor {
  position: absolute;
  pointer-events: none;
}

.decor-left {
  left: 0;
  bottom: 120px;
  width: 140px;
}

.decor-right {
  right: 80px;
  top: 160px;
  width: 120px;
}

.decor-bottom {
  right: 120px;
  bottom: 60px;
  width: 120px;
}

/* header */

.services-header {
  margin-bottom: 60px;
}

.services-eyebrow {
  display: block;
  color: #e24c2a;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.services-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  line-height: 1.1;
}

/* grid */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* card */

.service-card {
  max-width: 340px;
}
.service-card:nth-child(2){
  margin-top:60px;
}

.service-card:nth-child(1){
  margin-top:120px;
}
.service-img {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 4 / 5;
  transition: transform .4s ease;

}

.service-img img {
  width: 100%;
  height:100%;
  display: block;
}
.service-card:hover .service-img{
  transform: rotate(5deg) scale(1.05);
}
.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 12px;
}
.service-card .nail-hero__services {
      justify-content: flex-start;
}
.service-link {
  font-size: 15px;
  font-weight: 500;
  border-bottom: 2px solid #e24c2a;
  padding-bottom: 4px;
  display: inline-block;
}

/* tablet */

@media(max-width:1024px) {

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* mobile */

@media(max-width:768px) {

  .services-grid {
    /* grid-template-columns: 1fr; */
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .services-title {
    font-size: 36px;
  }

  .services-decor {
    opacity: .4;
  }
.service-card:nth-child(1),
.service-card:nth-child(2){
margin-top:0;
}
}

/* =========================
   POLICY PAGE
========================= */
.policy-page{
  width: 100%;
  padding: 30px 0;
}

.policy-item{
  padding: 20px 0;text-align: center;
}


.policy-item__inner{
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
}

.policy-kicker{
  margin: 0 0 8px;
  font-size: 20px;
  font-family: var(--font-title);
  opacity: .85;
}

.policy-title{
  margin: 0 0 14px;
  font-family: var(--font-title);
  font-size: 40px;
  line-height: 1.1;
  color: #3a2b27;
  font-weight: 500;
}

.policy-desc{
  margin: 0 auto;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
  opacity: .9;
}

/* Responsive */
@media (max-width: 991px){
  .policy-item{ padding: 70px 0; }
  .policy-title{ font-size: 46px; }
}

@media (max-width: 767px){
  .policy-item{ padding: 56px 0; }
  .policy-title{ font-size: 38px; }
  .policy-item__inner{ width: min(900px, calc(100% - 28px)); }
}
