:root {
  --saffron-700: #c85000;
  --saffron-600: #e56a00;
  --saffron-500: #f07e1b;
  --saffron-200: #ffd8b5;
  --maroon-700: #5a1f14;
  --white: #ffffff;
  --ink-900: #1f1a17;
  --ink-700: #433630;
  --sand-100: #fff7ef;
  --sand-200: #ffefe1;
  --gold-300: #f6c68b;
  --shadow: 0 18px 40px rgba(31, 26, 23, 0.12);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --max-width: 1140px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink-900);
  background: radial-gradient(circle at top left, #fff3e7 0%, #ffffff 50%),
    linear-gradient(120deg, rgba(255, 211, 169, 0.35), rgba(255, 255, 255, 0));
  font-family: "Source Sans 3", "Noto Sans", sans-serif;
  line-height: 1.65;
}

p {
  font-size: 18px;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  background: var(--white);
  border-bottom: 1px solid rgba(229, 106, 0, 0.14);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(31, 26, 23, 0.08);
}

.top-header {
  background: var(--white);
  border-bottom: 1px solid rgba(229, 106, 0, 0.12);
  font-size: 14px;
  color: var(--ink-700);
}

.top-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 24px;
}

.top-header a {
  color: var(--ink-700);
  font-weight: 600;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
}

.mobile-booking {
  display: none !important;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--saffron-500), var(--gold-300));
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 22px;
  box-shadow: 0 10px 24px rgba(229, 106, 0, 0.32);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  letter-spacing: 0.3px;
}

.brand-text span {
  font-size: 13px;
  color: var(--ink-700);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-700);
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--saffron-700);
  background: var(--sand-100);
}

.hero {
  padding: 72px 0 40px;
}

.hero.hero-slider {
  background: #f47d03;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.18' stroke-width='1.2'%3E%3Ccircle cx='120' cy='120' r='40'/%3E%3Ccircle cx='120' cy='120' r='80'/%3E%3Ccircle cx='120' cy='120' r='110'/%3E%3Cpath d='M120 10v20M120 210v20M10 120h20M210 120h20'/%3E%3Cpath d='M48 48l14 14M178 178l14 14M48 192l14-14M178 62l14-14'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 360px 360px;
  background-repeat: repeat;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.hero.hero-slider .container {
  position: relative;
  z-index: 1;
}

.hero.hero-slider .eyebrow {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.hero.hero-slider h1,
.hero.hero-slider p {
  color: var(--white);
}

.hero.hero-slider .stat-card {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.hero.hero-slider .stat-card p {
  color: rgba(255, 255, 255, 0.9);
}

.hero.hero-slider .stat-card strong {
  color: var(--white);
}

.hero.hero-slider .button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
}

.hero-slider {
  position: relative;
  overflow: hidden;
}

.slides {
  position: relative;
  min-height: 420px;
}

.slide {
  display: none;
  animation: fadeIn 0.6s ease;
}

.slide.is-active {
  display: block;
}

.slider-controls {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid rgba(200, 80, 0, 0.5);
  background: transparent;
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--saffron-600);
  border-color: var(--saffron-600);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand-100);
  color: var(--saffron-700);
  font-weight: 600;
  font-size: 13px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 52px);
  margin: 18px 0 16px;
  line-height: 1.1;
  color: var(--maroon-700);
}

.hero p {
  color: var(--ink-700);
  font-size: 17px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: all 0.2s ease;
}

.button.primary {
  background: var(--saffron-700);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(229, 106, 0, 0.3);
}

.button.primary:hover {
  transform: translateY(-1px);
  background: #b84b00;
}

.button.ghost {
  border-color: rgba(229, 106, 0, 0.3);
  color: var(--saffron-700);
  background: var(--white);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.stat-card {
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(229, 106, 0, 0.12);
  box-shadow: var(--shadow);
}

.stat-card strong {
  font-size: 20px;
}

.section {
  padding: 62px 0;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 4vw, 36px);
  margin: 0;
  color: var(--maroon-700);
}

h2 {
  color: var(--maroon-700);
}

.section-title p {
  margin: 0;
  color: var(--ink-700);
  max-width: 720px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid rgba(229, 106, 0, 0.14);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  height: 100%;
}

.card img.icon {
  width: 64px;
  height: 64px;
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: var(--ink-700);
}

.highlight {
  background: linear-gradient(120deg, #fff4ea, #fff);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(229, 106, 0, 0.18);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.portrait-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(229, 106, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.portrait-card img {
  border-radius: var(--radius-lg);
  background: var(--sand-200);
  padding: 10px;
  object-fit: contain;
  width: 100%;
  flex: 1 1 auto;
  height: 100%;
  max-height: 420px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  padding-top: 6px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand-100);
  color: var(--saffron-700);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.1;
}

.service-hero {
  padding: 48px 0 24px;
}

.page-hero {
  background: #fff7ef;
  padding: 44px 0;
  text-align: center;
}

.page-hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 5vw, 40px);
  color: var(--maroon-700);
}

.page-hero p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--ink-700);
}

.page-hero .breadcrumbs {
  justify-content: center;
  margin-bottom: 10px;
}

.service-hero .hero-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(229, 106, 0, 0.18);
  padding: 28px;
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow);
}

.service-hero img {
  border-radius: var(--radius-lg);
  background: var(--sand-100);
  padding: 18px;
}

.list {
  display: grid;
  gap: 10px;
  padding-left: 16px;
  color: var(--ink-700);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery figure {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(229, 106, 0, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.gallery figcaption {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--ink-700);
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
  color: var(--ink-700);
  font-weight: 600;
}

.icon-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.icon-list .icon {
  font-size: 16px;
  line-height: 1.2;
}

.icon-list strong {
  display: block;
  color: var(--ink-900);
}

.icon-list span {
  display: block;
  font-weight: 500;
  color: var(--ink-700);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(229, 106, 0, 0.14);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
}

.video-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.video-card iframe {
  width: 100%;
  min-height: 220px;
  border: 0;
}

.video-card .video-body {
  padding: 16px 18px 20px;
}

form {
  display: grid;
  gap: 14px;
}

input,
textarea,
select {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(61, 51, 46, 0.2);
  font-family: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.footer {
  padding: 36px 0;
  border-top: 1px solid rgba(229, 106, 0, 0.12);
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}

.footer p,
.footer a {
  color: var(--ink-700);
  font-size: 14px;
}

.note {
  font-size: 13px;
  color: var(--ink-700);
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions .button.primary {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 56px 0 32px;
  }

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

  .portrait-card img {
    max-height: 360px;
  }

  .stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .card-grid,
  .gallery,
  .video-grid,
  .footer-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .service-hero .hero-panel {
    padding: 22px;
  }

  .slider-controls {
    margin-bottom: 8px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 18px;
  }

  .nav-links {
    gap: 10px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .section {
    padding: 48px 0;
  }

  .card {
    padding: 18px;
  }

  .portrait-card img {
    max-height: 320px;
  }

  .video-card iframe {
    min-height: 200px;
  }
}

@media (max-width: 430px) {
  .nav-links {
    font-size: 13px;
  }

  .button {
    width: 100%;
  }

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

@media (max-width: 768px) {
  .top-header {
    display: none;
  }

  .nav {
    align-items: flex-start;
  }

  .brand {
    margin-top: 4px;
  }

  .nav-actions {
    position: relative;
    align-items: center;
  }

  .nav-links {
    display: none;
    width: 100%;
    background: var(--white);
    border: 1px solid rgba(229, 106, 0, 0.16);
    border-radius: var(--radius-md);
    padding: 12px;
    gap: 12px;
    flex-wrap: wrap;
    max-height: 60vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links a {
    width: 100%;
    text-align: left;
    background: var(--sand-100);
  }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
  }

  .nav-toggle {
    border: 1px solid rgba(229, 106, 0, 0.25);
    background: var(--white);
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: 700;
    color: var(--saffron-700);
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: 4px;
  }

  .nav-actions .button.primary:not(.mobile-booking) {
    display: none;
  }

  .mobile-booking {
    display: inline-flex !important;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 50;
    box-shadow: 0 18px 30px rgba(31, 26, 23, 0.2);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

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

  .card-grid,
  .gallery,
  .video-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .container {
    padding: 0 36px;
  }
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-700);
}

.breadcrumbs a {
  color: var(--saffron-700);
  font-weight: 600;
}

.breadcrumbs span {
  color: var(--ink-700);
}
