:root {
  --bg: #f7f3ed;
  --ink: #25211f;
  --muted: #6f6860;
  --line: #ded5ca;
  --panel: #ffffff;
  --accent: #1b746f;
  --accent-dark: #115a55;
  --lilac: #8d63ff;
  --lilac-soft: #f2ecff;
  --coral: #dc7a68;
  --sun: #f6c85f;
  --soft: #e8f3f1;
  --shadow: 0 18px 44px rgba(36, 28, 20, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

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

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(37, 31, 43, 0.94);
  color: white;
  display: grid;
  gap: 20px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 14px clamp(18px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 5;
}

.brand-link {
  align-items: center;
  display: flex;
  gap: 12px;
  text-decoration: none;
}

.brand-link img {
  background: #fbf7ff;
  border-radius: 8px;
  height: 58px;
  object-fit: contain;
  padding: 6px;
  width: 98px;
  box-shadow: inset 0 0 0 2px rgba(141, 99, 255, 0.18);
}

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

.brand-link small {
  color: #d7cec5;
}

.site-nav {
  display: flex;
  gap: 22px;
  justify-content: center;
}

.site-nav a,
.header-action,
.primary-action,
.secondary-action,
.site-footer a {
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a {
  color: #eee7df;
}

.header-action,
.primary-action {
  background: linear-gradient(135deg, var(--lilac), var(--accent));
  color: white;
  display: inline-flex;
  justify-content: center;
  padding: 13px 18px;
  box-shadow: 0 10px 22px rgba(91, 66, 166, 0.22);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: white;
  display: inline-flex;
  justify-content: center;
  padding: 12px 18px;
}

.hero {
  align-items: end;
  background:
    linear-gradient(90deg, rgba(30, 21, 42, 0.78), rgba(36, 26, 18, 0.24)),
    url("assets/web/can-nora-foto-09.jpeg") center / cover;
  color: white;
  display: grid;
  min-height: 92vh;
  padding: 142px clamp(20px, 6vw, 92px) 38px;
}

.hero-content {
  max-width: 780px;
}

.hero-content p,
.eyebrow {
  color: var(--lilac);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero-content p {
  color: #dfd0ff;
}

.hero-content h1 {
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.96;
  margin: 0 0 18px;
  max-width: 720px;
}

.hero-content span {
  color: #f4eee6;
  display: block;
  font-size: 21px;
  line-height: 1.45;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 56px;
}

.hero-facts strong {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 14px 18px;
  backdrop-filter: blur(10px);
}

.booking-strip {
  align-items: center;
  background: #2f2543;
  color: white;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr) auto;
  padding-bottom: 34px;
  padding-top: 34px;
}

.booking-strip h2 {
  font-size: clamp(28px, 3.4vw, 44px);
}

.booking-strip p:not(.eyebrow) {
  color: #e7ddf8;
  margin: 0;
}

section:not(.hero) {
  padding: 76px clamp(20px, 6vw, 92px);
}

.intro-section,
.location-section {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  margin: 0;
}

h3 {
  font-size: 25px;
  margin: 0 0 10px;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.value-grid,
.service-grid,
.team-grid,
.faq-list {
  display: grid;
  gap: 16px;
}

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

.value-grid span,
.service-grid article,
.team-grid article,
.contact-panel,
.faq-list details,
.care-grid article,
.review-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.value-grid span {
  color: var(--accent-dark);
  font-weight: 900;
  padding: 16px;
}

.section-heading {
  margin-bottom: 28px;
  max-width: 820px;
}

.section-heading span {
  color: var(--muted);
  display: block;
  font-size: 18px;
  line-height: 1.5;
  margin-top: 12px;
}

.instagram-action {
  align-items: center;
  background: linear-gradient(135deg, #8d63ff, #dc7a68);
  border-radius: 8px;
  color: white;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  margin-top: 18px;
  padding: 13px 18px;
  text-decoration: none;
}

.google-review-action {
  align-items: center;
  background: white;
  border: 1px solid rgba(141, 99, 255, 0.36);
  border-radius: 8px;
  color: var(--lilac);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  margin-top: 18px;
  padding: 13px 18px;
  text-decoration: none;
}

.google-review-action:hover {
  background: var(--lilac-soft);
}

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

.service-grid article {
  border-top: 5px solid var(--lilac);
  padding: 24px;
  position: relative;
}

.service-grid article:nth-child(2) {
  border-top-color: var(--accent);
}

.service-grid article:nth-child(3) {
  border-top-color: var(--coral);
}

.service-grid article:nth-child(4) {
  border-top-color: var(--sun);
}

.service-number {
  color: var(--lilac);
  display: block;
  font-weight: 900;
  margin-bottom: 18px;
}

.service-grid ul {
  color: var(--muted);
  line-height: 1.7;
  margin: 14px 0 0;
  padding-left: 20px;
}

.team-section,
.gallery-section,
.care-section {
  background: #fffaf4;
}

.care-section {
  background:
    linear-gradient(135deg, rgba(242, 236, 255, 0.9), rgba(232, 243, 241, 0.92));
}

.care-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.care-grid article {
  padding: 26px;
}

.care-grid strong {
  align-items: center;
  background: var(--lilac-soft);
  border-radius: 8px;
  color: var(--lilac);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  margin-bottom: 18px;
  width: 54px;
}

.team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-grid article {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-grid article,
.instagram-track a,
.care-grid article {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-grid article:hover,
.team-grid article:hover,
.instagram-track a:hover,
.care-grid article:hover {
  box-shadow: 0 22px 54px rgba(62, 43, 88, 0.18);
  transform: translateY(-3px);
}

.team-grid img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.team-grid h3,
.team-grid p {
  padding: 0 18px;
}

.team-grid h3 {
  margin-top: 18px;
}

.team-grid p {
  margin-bottom: 22px;
}

.instagram-carousel {
  overflow: hidden;
  padding: 8px 0 18px;
}

.instagram-track {
  animation: instagramScroll 26s linear infinite;
  display: flex;
  gap: 16px;
  width: max-content;
}

.instagram-track a {
  border-radius: 8px;
  box-shadow: var(--shadow);
  flex: 0 0 clamp(210px, 24vw, 330px);
  overflow: hidden;
}

.instagram-carousel:hover .instagram-track {
  animation-play-state: paused;
}

.instagram-track img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

@keyframes instagramScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.review-section {
  align-items: center;
  background: #2b2420;
  color: white;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.review-section h2 {
  color: white;
}

.review-card {
  background: #fbf7ff;
  border-color: rgba(141, 99, 255, 0.28);
  padding: 30px;
}

.review-card p {
  color: #3e3447;
  font-size: 24px;
  margin-top: 0;
}

.review-card strong {
  color: var(--lilac);
}

.google-reviews-section {
  background:
    radial-gradient(circle at top left, rgba(141, 99, 255, 0.18), transparent 34%),
    #fffaf4;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 260px;
  position: relative;
}

.review-slide {
  animation: reviewFade 20s infinite;
  background: white;
  border: 1px solid rgba(141, 99, 255, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
  grid-area: 1 / 1;
  opacity: 0;
  padding: clamp(24px, 5vw, 44px);
  transform: translateY(8px);
}

.review-slide:nth-child(2) {
  animation-delay: 5s;
}

.review-slide:nth-child(3) {
  animation-delay: 10s;
}

.review-slide:nth-child(4) {
  animation-delay: 15s;
}

.stars {
  color: #f6b93b;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 14px;
}

.review-slide p {
  color: #332b3f;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.25;
  margin: 0 0 22px;
  max-width: 980px;
}

.review-slide strong {
  color: var(--lilac);
  font-size: 18px;
}

@keyframes reviewFade {
  0%,
  18% {
    opacity: 1;
    transform: translateY(0);
  }

  25%,
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}

.contact-panel {
  padding: 28px;
}

.contact-panel .primary-action {
  margin-top: 8px;
}

.map-frame {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-top: 24px;
  overflow: hidden;
}

.map-frame iframe {
  border: 0;
  display: block;
  height: 360px;
  width: 100%;
}

.map-action {
  border: 1px solid var(--lilac);
  border-radius: 8px;
  color: var(--lilac);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  margin-left: 10px;
  margin-top: 8px;
  padding: 12px 18px;
  text-decoration: none;
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

.site-footer {
  align-items: center;
  background: #25211f;
  color: white;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 92px);
}

.site-footer span {
  color: #d7cec5;
}

.site-footer a {
  color: #b9fff6;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    position: static;
  }

  .site-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero {
    min-height: 78vh;
    padding-top: 56px;
  }

  .intro-section,
  .location-section,
  .booking-strip,
  .service-grid,
  .team-grid,
  .faq-list,
  .care-grid,
  .review-section {
    grid-template-columns: 1fr;
  }

  .reviews-carousel {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .brand-link {
    align-items: flex-start;
  }

  .brand-link img {
    width: 86px;
  }

  .hero-content span,
  p {
    font-size: 17px;
  }

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