/* ASK ME Hospitality — Core Styles */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --black: #0A0A0A;
  --lime: #D4E12D;
  --magenta: #B5007D;
  --teal: #3D85A8;
  --cream: #F7F5F0;
  --white: #FFFFFF;
  --text-dark: #1a1a1a;
  --text-muted: #5a5a5a;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --header-height: 80px;
  --container: 1200px;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

.section-subtitle--light {
  color: rgba(255, 255, 255, 0.75);
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 12px;
}

.section-label--lime {
  color: var(--lime);
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}

.btn--primary:hover {
  background: transparent;
  color: var(--lime);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn--magenta {
  background: transparent;
  color: var(--magenta);
  border-color: var(--magenta);
}

.btn--magenta:hover {
  background: var(--magenta);
  color: var(--white);
}

.btn--dark {
  background: var(--black);
  color: var(--lime);
  border-color: var(--black);
}

.btn--dark:hover {
  background: var(--lime);
  color: var(--black);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--teal);
  transition: gap var(--transition);
}

.link-arrow:hover {
  gap: 14px;
  color: var(--magenta);
}

.link-arrow::after {
  content: '→';
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  position: relative;
  width: 120px;
  height: 120px;
}

.preloader__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.preloader__ring circle {
  fill: none;
  stroke: var(--lime);
  stroke-width: 3;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  animation: drawRing 1.2s ease forwards;
}

.preloader__logo {
  position: absolute;
  inset: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  object-fit: contain;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.header--transparent {
  background: transparent;
}

.header--solid {
  background: var(--cream);
  box-shadow: var(--shadow);
}

.header--dark-solid {
  background: var(--black);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.header__logo img {
  height: 48px;
  width: auto;
}

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

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
}

.header--transparent .nav__link,
.header--dark-solid .nav__link {
  color: var(--white);
}

.header--solid .nav__link {
  color: var(--text-dark);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link.active {
  color: var(--lime);
}

.header--solid .nav__link.active {
  color: var(--magenta);
}

.header--solid .nav__link.active::after {
  background: var(--magenta);
}

.header__cta .btn--primary {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.header--solid .header__cta .btn--primary {
  background: var(--magenta);
  border-color: var(--magenta);
  color: var(--white);
}

.header--solid .header__cta .btn--primary:hover {
  background: transparent;
  color: var(--magenta);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.header--solid .hamburger span {
  background: var(--black);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav__link {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  transition: color var(--transition);
}

.mobile-nav__link:hover,
.mobile-nav__link.active {
  color: var(--lime);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero--short {
  min-height: 50vh;
  padding-top: var(--header-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(181, 0, 125, 0.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--header-height) + 40px) 24px 80px;
  max-width: 900px;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--lime);
  margin-bottom: 24px;
}

.hero__desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__quote {
  position: absolute;
  opacity: 0.08;
  color: var(--lime);
  font-family: var(--font-serif);
  font-size: 12rem;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.hero__quote--tl {
  top: 15%;
  left: 5%;
}

.hero__quote--br {
  bottom: 15%;
  right: 5%;
  transform: rotate(180deg);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-indicator__arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
  color: var(--lime);
}

.breadcrumb__sep {
  color: var(--lime);
}

/* Stats Band */
.stats {
  background: var(--black);
  padding: 64px 0;
  border-top: 3px solid var(--lime);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat__number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section--cream {
  background: var(--cream);
}

.section--white {
  background: var(--white);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

/* About Preview */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-preview__image {
  position: relative;
}

.about-preview__image img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-preview__frame {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--lime);
  border-radius: var(--radius);
  z-index: -1;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius);
  border-left: 4px solid transparent;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.service-card:hover {
  border-left-color: var(--lime);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--teal);
}

.service-card__title {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.services-cta {
  text-align: center;
  margin-top: 48px;
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.pillar {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.pillar:hover {
  transform: translateY(-4px);
}

.pillar__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--teal));
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
}

.pillar__title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--magenta);
}

.pillar__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Department Spotlight */
.spotlight {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.spotlight__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.spotlight__row--reverse {
  direction: rtl;
}

.spotlight__row--reverse > * {
  direction: ltr;
}

.spotlight__image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius);
}

.spotlight__title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.spotlight__desc {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Leadership Cards */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 480px;
  margin: 0 auto;
}

.leader-card__phone + .leader-card__phone {
  margin-top: -8px;
}

.leader-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.leader-card:hover {
  transform: translateY(-4px);
  border-color: var(--lime);
}

.leader-card__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  border: 3px solid var(--lime);
}

.leader-card__name {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 4px;
}

.leader-card__role {
  font-size: 0.85rem;
  color: var(--lime);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.leader-card__phone {
  margin-bottom: 16px;
}

.leader-card__phone a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
}

.leader-card__phone a:hover {
  color: var(--lime);
}

.leader-card__bio {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.6;
}

.leader-card__link {
  color: var(--lime);
  font-weight: 600;
  font-size: 0.9rem;
}

.leader-card__link:hover {
  color: var(--white);
}

/* Testimonial */
.testimonial {
  position: relative;
  padding: 120px 0;
  background: var(--cream);
  overflow: hidden;
}

.testimonial__bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4E12D' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
}

.testimonial__content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--lime);
  line-height: 1;
  margin-bottom: -20px;
}

.testimonial__text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial__author {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* CTA Band */
.cta-band {
  background: var(--black);
  padding: 80px 0;
  text-align: center;
  border-top: 3px solid var(--lime);
}

.cta-band__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 32px;
}

/* Vision / Mission Cards */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.vm-card {
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--magenta);
}

.vm-card--teal {
  border-top-color: var(--teal);
}

.vm-card__title {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--magenta);
}

.vm-card--teal .vm-card__title {
  color: var(--teal);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  padding: 36px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-card__title {
  font-size: 1.2rem;
  color: var(--magenta);
  margin-bottom: 12px;
}

.value-card__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.values-grid .value-card:nth-child(4),
.values-grid .value-card:nth-child(5) {
  grid-column: span 1;
}

/* Leader Profile (About page) */
.leader-profile {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
}

.leader-profile--reverse {
  direction: rtl;
}

.leader-profile--reverse > * {
  direction: ltr;
}

.leader-profile__photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid var(--lime);
}

.leader-profile__name {
  font-size: 2rem;
  margin-bottom: 4px;
}

.leader-profile__role {
  color: var(--magenta);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.leader-profile__phone {
  margin-bottom: 8px;
  font-weight: 500;
}

.leader-profile__phone + .leader-profile__bio {
  margin-top: 16px;
}

.leader-profile__phone a:hover {
  color: var(--magenta);
}

.leader-profile__bio {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.leader-profile__bio p {
  margin-bottom: 16px;
}

blockquote.leader-quote {
  border-left: 4px solid var(--lime);
  padding: 20px 24px;
  margin: 24px 0;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-dark);
}

/* Why Work With Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-item {
  text-align: center;
  padding: 32px 24px;
}

.why-item__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 225, 45, 0.15);
  color: var(--lime);
  font-size: 1.5rem;
}

.why-item__title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.why-item__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Services Page */
.svc-intro .section-subtitle {
  margin-bottom: 56px;
}

.svc-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.svc-cat-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--teal);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.svc-cat-card:nth-child(2) {
  border-top-color: var(--magenta);
}

.svc-cat-card:nth-child(3) {
  border-top-color: var(--lime);
}

.svc-cat-card:nth-child(4) {
  border-top-color: var(--black);
}

.svc-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.svc-cat-card__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  margin-bottom: 16px;
}

.svc-cat-card__title {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.svc-cat-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.svc-cat-card__arrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.5px;
}

.svc-cat-card:nth-child(2) .svc-cat-card__arrow {
  color: var(--magenta);
}

.svc-cat-card:nth-child(3) .svc-cat-card__arrow {
  color: var(--black);
}

.svc-cat-card:nth-child(4) .svc-cat-card__arrow {
  color: var(--teal);
}

.svc-cat-card:hover .svc-cat-card__arrow {
  color: var(--magenta);
}

.svc-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 90;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.svc-nav__inner {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.svc-nav__inner::-webkit-scrollbar {
  display: none;
}

.svc-nav__link {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
}

.svc-nav__link:hover,
.svc-nav__link.active {
  background: var(--black);
  color: var(--lime);
}

.svc-block {
  scroll-margin-top: calc(var(--header-height) + 60px);
}

.svc-block__header {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.svc-block__header--reverse {
  grid-template-columns: 380px 1fr;
}

.svc-block__header--reverse .svc-block__content {
  order: 2;
}

.svc-block__header--reverse .svc-block__visual {
  order: 1;
}

.svc-block__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc-block__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.svc-block__num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
  -webkit-text-stroke: 1px var(--black);
}

.section--white .svc-block__num {
  color: transparent;
}

.svc-block__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}

.svc-block__desc {
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

.svc-block__visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.svc-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.svc-item {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--teal);
  transition: transform var(--transition), box-shadow var(--transition);
}

.section--white .svc-item {
  background: var(--cream);
}

.svc-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.svc-item__title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.svc-item__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.svc-item__list {
  display: grid;
  gap: 8px;
}

.svc-item__list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.svc-item__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 2px var(--black);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--lime);
}

.process-card__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--black);
  color: var(--lime);
  border: 2px solid var(--lime);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.process-card__title {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 10px;
}

.process-card__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.svc-commit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.svc-commit__content p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.svc-commit__highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc-commit__highlight {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.svc-commit__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
}

.svc-commit__highlight h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.svc-commit__highlight p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Legacy accordion styles (kept for reference) */
.service-category {
  margin-bottom: 64px;
}

.service-category__title {
  font-size: 1.8rem;
  color: var(--magenta);
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream);
}

.service-category__desc {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.service-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-accordion details {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.service-accordion details[open] {
  box-shadow: var(--shadow-lg);
}

.service-accordion summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  list-style: none;
  transition: background var(--transition);
}

.service-accordion summary::-webkit-details-marker {
  display: none;
}

.service-accordion summary::after {
  content: '+';
  margin-left: auto;
  font-size: 1.5rem;
  color: var(--teal);
  transition: transform var(--transition);
}

.service-accordion details[open] summary::after {
  transform: rotate(45deg);
}

.service-accordion summary:hover {
  background: var(--cream);
}

.service-accordion__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(61, 133, 168, 0.1);
  color: var(--teal);
  flex-shrink: 0;
}

.service-accordion__body {
  padding: 0 28px 28px 84px;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-accordion__body ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 12px;
}

.service-accordion__body li {
  margin-bottom: 6px;
}

/* Timeline */
.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: rgba(212, 225, 45, 0.2);
}

.timeline__line {
  position: absolute;
  top: 56px;
  left: 10%;
  height: 3px;
  background: var(--lime);
  width: 0;
  transition: width 1.5s ease;
}

.timeline__line.animated {
  width: 80%;
}

.timeline__step {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.timeline__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--black);
  color: var(--lime);
  border: 3px solid var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.timeline__title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.timeline__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 180px;
  margin: 0 auto;
}

/* Gallery */
.gallery-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gallery-video {
  margin: 0;
}

.gallery-video__frame {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow);
}

.gallery-video__frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: top;
}

.gallery-video__caption {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-dark);
}

.gallery-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-photo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.gallery-photo:hover img {
  transform: scale(1.04);
}

.gallery-photo:hover img {
  transform: scale(1.04);
}

/* Properties */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.nav-dropdown__toggle::after {
  content: '▾';
  margin-left: 6px;
  font-size: 0.75rem;
  opacity: 0.8;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-dark);
  border-radius: calc(var(--radius) - 2px);
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a.active {
  background: var(--cream);
  color: var(--magenta);
}

.header--transparent .nav-dropdown__menu a,
.header--dark-solid .nav-dropdown__menu a {
  color: var(--text-dark);
}

.mobile-nav__link--sub {
  padding-left: 32px;
  font-size: 0.9rem;
  opacity: 0.85;
}

.properties-selector {
  max-width: 640px;
  margin: 0 auto 56px;
}

.properties-selector__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.properties-selector__row {
  display: flex;
  gap: 12px;
}

.properties-select {
  flex: 1;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-dark);
  cursor: pointer;
  transition: border-color var(--transition);
}

.properties-select:focus {
  outline: none;
  border-color: var(--teal);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.property-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.property-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.property-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream), #ebe8e0);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.property-card__body {
  padding: 28px;
}

.property-card__type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 8px;
}

.property-card__title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.property-card__address {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.property-detail__intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.property-detail__type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 10px;
}

.property-detail__address {
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
  margin-top: 12px;
}

.property-detail__actions {
  text-align: right;
}

.property-detail__note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.property-detail__section {
  margin-bottom: 48px;
}

.property-detail__heading {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.property-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.property-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.property-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.property-gallery figure:hover img {
  transform: scale(1.04);
}

.property-gallery__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: var(--cream);
  border: 2px dashed rgba(0, 0, 0, 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 16px;
}

.property-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
}

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

.property-map--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 2px dashed rgba(0, 0, 0, 0.1);
  color: var(--text-muted);
}

.property-detail__back {
  margin-top: 16px;
}

.property-detail__back .link-arrow::after {
  content: '←';
}

[data-placeholder-link] {
  pointer-events: none;
  opacity: 0.65;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}

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

.form-success {
  display: none;
  padding: 20px;
  background: rgba(212, 225, 45, 0.15);
  border: 2px solid var(--lime);
  border-radius: var(--radius);
  text-align: center;
  color: var(--text-dark);
  font-weight: 600;
}

.form-success.show {
  display: block;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(61, 133, 168, 0.1);
  color: var(--teal);
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-info__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 1rem;
  color: var(--text-dark);
}

.contact-map {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 280px;
}

.contact-map--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 2px dashed rgba(0, 0, 0, 0.1);
  color: var(--text-muted);
  min-height: 280px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.faq-item {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq-item__q {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--magenta);
}

.faq-item__a {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
  border-top: 3px solid var(--lime);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo img {
  height: 56px;
  margin-bottom: 16px;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--lime);
  margin-bottom: 20px;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--lime);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.85rem;
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
}

.footer__credit {
  margin-top: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__credit a {
  color: var(--lime);
  transition: color var(--transition);
}

.footer__credit a:hover {
  color: var(--white);
}
