/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    --color-black: #0a0a0a;
    --color-charcoal: #1a1a1a;
    --color-dark: #2c2c2c;
    --color-gold: #b8860b;
    --color-gold-light: #d4a843;
    --color-gold-pale: #f0e6d0;
    --color-cream: #ab9f8e;
    --color-white: #b5aa99;
    --color-warm-gray: #5a534c;
    --color-light-gray: #cdc5ba;
    --color-medium-gray: #3d3835;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Cormorant Garamond', Garamond, serif;
    --font-accent: 'Montserrat', 'Helvetica Neue', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s ease;
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.08);
    --shadow-elegant: 0 8px 40px rgba(0, 0, 0, 0.12);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--color-black);
    background-color: var(--color-cream);
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
input, select, textarea, button { font-size: inherit; }
input, textarea { -webkit-appearance: none; border-radius: 0; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.section-label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 400;
    color: var(--color-medium-gray);
    max-width: 600px;
    line-height: 1.8;
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 2rem 0;
}

.ornament::before,
.ornament::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    opacity: 0.5;
}

.ornament-icon {
    color: var(--color-gold);
    font-size: 0.6rem;
    opacity: 0.7;
}

.divider {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 2rem 0;
    opacity: 0.6;
}

.divider-center { margin: 2rem auto; }

/* ============================================
   NAVIGATION (logo only)
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 3rem;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 2px;
}

.nav-logo span {
    color: var(--color-gold-light);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    background: var(--color-gold);
    color: var(--color-white);
    border: 1px solid var(--color-gold);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-block;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.25);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

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

.btn-outline {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold-light);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--color-black);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(184, 134, 11, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(184, 134, 11, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 0%, rgba(184, 134, 11, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0a 0%, #141210 50%, #0a0a0a 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(184, 134, 11, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(184, 134, 11, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-border-top,
.hero-border-bottom {
    position: absolute;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.3), transparent);
}

.hero-border-top { top: 15%; }
.hero-border-bottom { bottom: 15%; }

.hero-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: rgba(184, 134, 11, 0.25);
    border-style: solid;
}

.hero-corner--tl { top: calc(15% - 20px); left: 5%; border-width: 1px 0 0 1px; }
.hero-corner--tr { top: calc(15% - 20px); right: 5%; border-width: 1px 1px 0 0; }
.hero-corner--bl { bottom: calc(15% - 20px); left: 5%; border-width: 0 0 1px 1px; }
.hero-corner--br { bottom: calc(15% - 20px); right: 5%; border-width: 0 1px 1px 0; }

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-prelude {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--color-gold-light);
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    margin-top: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 1.2s forwards;
}

.hero-scroll span {
    font-family: var(--font-accent);
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */
.page-header {
    position: relative;
    padding: 10rem 2rem 5rem;
    background: var(--color-black);
    text-align: center;
    overflow: hidden;
}

.page-header .hero-bg,
.page-header .hero-pattern {
    position: absolute;
    inset: 0;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header .section-label {
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.page-header .section-title {
    color: var(--color-white);
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}

.page-header .section-subtitle {
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
}

.page-header .ornament {
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 6rem 2rem;
    background: var(--color-cream);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper { position: relative; }

.about-slideshow {
    width: 100%;
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    background: var(--color-charcoal);
}

.about-slideshow .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-slideshow .slide.active {
    opacity: 1;
}

.slide-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slide-dot.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.about-image-border {
    position: absolute;
    top: 20px; left: 20px; right: -20px; bottom: -20px;
    border: 1px solid var(--color-gold);
    opacity: 0.3;
    z-index: -1;
}

.about-content { padding: 2rem 0; }

.about-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
}

.about-signature {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--color-gold);
    margin-top: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-light-gray);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-gold);
    display: block;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-warm-gray);
    margin-top: 0.5rem;
    display: block;
}

/* ============================================
   EXPERIENCE BANNER
   ============================================ */
.experience-banner {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, #9a7209 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.experience-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.experience-banner .banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.experience-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.experience-banner p {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
    padding: 6rem 2rem;
    background: var(--color-white);
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-header {
    text-align: center;
    margin-bottom: 5rem;
}

.why-us-header .section-subtitle { margin: 0 auto; }

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.why-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    transition: var(--transition-smooth);
    background: var(--color-white);
    box-shadow: 3px 4px 12px rgba(0, 0, 0, 0.12);
}

.why-card:hover { transform: translateY(-6px); }

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gold-pale);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.why-icon svg {
    width: 28px; height: 28px;
    stroke: var(--color-gold);
    fill: none;
    stroke-width: 1.5;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon svg { stroke: var(--color-white); }

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
}

.why-card p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--color-medium-gray);
    line-height: 1.7;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 6rem 2rem;
    background: var(--color-black);
    color: var(--color-white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(184, 134, 11, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(184, 134, 11, 0.05) 0%, transparent 50%);
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.service-card {
    padding: 3rem;
    border: 1px solid rgba(184, 134, 11, 0.15);
    transition: var(--transition-smooth);
    position: relative;
}

.service-card:hover {
    background: rgba(184, 134, 11, 0.05);
    border-color: rgba(184, 134, 11, 0.3);
}

.service-card-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: rgba(184, 134, 11, 0.15);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    line-height: 1;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.service-list { list-style: none; }

.service-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 1.05rem;
}

.service-list li:last-child { border-bottom: none; }

.service-name {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-weight: 400;
}

.service-price {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--color-gold-light);
    white-space: nowrap;
    margin-left: 1rem;
}

.service-dots {
    flex: 1;
    margin: 0 0.5rem;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
    min-width: 30px;
    align-self: end;
    margin-bottom: 4px;
}

.services-note {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(184, 134, 11, 0.15);
}

.services-note p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.services-note .btn-primary {
    margin-top: 2rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 6rem 2rem;
    background: var(--color-cream);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonials-header .section-subtitle { margin: 0 auto; }

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.stars {
    color: var(--color-gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-text {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    color: var(--color-warm-gray);
    letter-spacing: 1px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--color-white);
    padding: 2.5rem;
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    box-shadow: 3px 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover {
    border-color: var(--color-gold-pale);
    box-shadow: var(--shadow-elegant);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--color-charcoal);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-charcoal);
}

.testimonial-source {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    color: var(--color-warm-gray);
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

/* ============================================
   CONTACT / LOCATION
   ============================================ */
.contact {
    padding: 6rem 2rem;
    background: var(--color-black);
    color: var(--color-white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(184, 134, 11, 0.06) 0%, transparent 60%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px; height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(184, 134, 11, 0.3);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px; height: 20px;
    stroke: var(--color-gold-light);
    fill: none;
    stroke-width: 1.5;
}

.contact-item h4 {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 0.5rem;
}

.contact-item p, .contact-item a {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.contact-item a:hover { color: var(--color-gold-light); }

.hours-grid { display: grid; gap: 0.4rem; }

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-day { color: rgba(255, 255, 255, 0.9); }

.hours-time {
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.hours-closed { color: rgba(184, 134, 11, 0.5); }

.contact-map {
    width: 100%;
    aspect-ratio: 1;
    background: var(--color-dark);
    overflow: hidden;
    border: 1px solid rgba(184, 134, 11, 0.15);
}

.contact-map iframe {
    width: 100%; height: 100%;
    border: none;
    filter: grayscale(80%) contrast(1.1) brightness(0.7);
    transition: var(--transition-smooth);
}

.contact-map:hover iframe {
    filter: grayscale(40%) contrast(1) brightness(0.85);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(184, 134, 11, 0.3);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.social-link svg {
    width: 18px; height: 18px;
    fill: var(--color-gold-light);
    transition: var(--transition-smooth);
}

.social-link:hover svg { fill: var(--color-white); }

/* ============================================
   FAB DIRECTORY MENU
   ============================================ */
.fab-wrapper {
    position: fixed;
    bottom: 2rem;
    right: 3.5rem;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fab-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    animation: fadeUp 1s ease 1.2s forwards;
    opacity: 0;
}

.fab-hint span {
    font-family: var(--font-accent);
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-warm-gray);
}

.fab-hint .scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease infinite;
}

.fab-btn {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--color-gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.fab-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(184, 134, 11, 0.5);
}

.fab-btn.active { background: var(--color-charcoal); }

.fab-label {
    font-family: var(--font-accent);
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-white);
    pointer-events: none;
    line-height: 1.2;
    text-align: center;
}

.fab-btn.active .fab-label {
    font-size: 1.4rem;
    letter-spacing: 0;
}

.fab-menu {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: var(--color-charcoal);
    border: 1px solid rgba(184, 134, 11, 0.25);
    min-width: 220px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.fab-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.fab-menu-title {
    font-family: var(--font-accent);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    padding: 0.75rem 1.5rem 0.5rem;
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
    margin-bottom: 0.25rem;
}

.fab-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition-fast);
}

.fab-menu a:hover {
    background: rgba(184, 134, 11, 0.1);
    color: var(--color-gold-light);
    padding-left: 1.75rem;
}

.fab-menu a.active-page {
    color: var(--color-gold-light);
    background: rgba(184, 134, 11, 0.08);
}

.fab-menu a svg {
    width: 16px; height: 16px;
    stroke: var(--color-gold);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.fab-menu-divider {
    height: 1px;
    background: rgba(184, 134, 11, 0.12);
    margin: 0.25rem 1.5rem;
}

/* ============================================
   PHONE POPUP MODAL
   ============================================ */
.phone-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.phone-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.phone-modal {
    background: var(--color-charcoal);
    border: 1px solid rgba(184, 134, 11, 0.3);
    padding: 3rem 3.5rem;
    text-align: center;
    max-width: 420px;
    width: 90%;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-smooth);
    position: relative;
}

.phone-modal-overlay.active .phone-modal {
    transform: scale(1) translateY(0);
}

.phone-modal-close {
    position: absolute;
    top: 1rem; right: 1.25rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
}

.phone-modal-close:hover { color: var(--color-gold-light); }

.phone-modal-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.phone-modal-icon svg {
    width: 26px; height: 26px;
    stroke: var(--color-gold-light);
    fill: none;
    stroke-width: 1.5;
}

.phone-modal h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.phone-modal p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.phone-modal-number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-gold-light);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.phone-modal-number:hover { color: var(--color-gold); }

.phone-modal-cta {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.9rem 2.5rem;
    background: var(--color-gold);
    color: var(--color-white);
    border: 1px solid var(--color-gold);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.phone-modal-cta:hover {
    background: transparent;
    color: var(--color-gold-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 3rem 2rem;
    background: #050505;
    text-align: center;
    border-top: 1px solid rgba(184, 134, 11, 0.1);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-white);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-logo span { color: var(--color-gold-light); }

.footer-tagline {
    font-family: var(--font-body);
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.footer p {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Tablet landscape & small desktop (1024px) --- */
@media (max-width: 1024px) {
    .about-container { grid-template-columns: 1fr; gap: 3rem; }
    .about-image-wrapper { max-width: 500px; margin: 0 auto; }
    .services-grid { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-map { aspect-ratio: 16/9; }
}

/* --- Tablet portrait (768px) --- */
@media (max-width: 768px) {
    html { font-size: 16px; }

    .navbar { padding: 1rem 1.5rem; }
    .navbar.scrolled { padding: 0.75rem 1.5rem; }
    .nav-logo { font-size: 1.4rem; }

    .hero-title { letter-spacing: 1px; }
    .hero-prelude { letter-spacing: 4px; font-size: 0.65rem; }
    .hero-tagline { margin-bottom: 2rem; }
    .hero-corner { display: none; }
    .hero-border-top, .hero-border-bottom { left: 8%; right: 8%; }

    .page-header { padding: 8rem 1.5rem 3.5rem; }
    .section-label { font-size: 0.7rem; letter-spacing: 3px; }

    .about { padding: 4rem 1.5rem; }
    .about-content { padding: 1rem 0; }
    .about-text { font-size: 1.05rem; }
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .stat-number { font-size: 2rem; }
    .about-image-border { top: 12px; left: 12px; right: -12px; bottom: -12px; }

    .experience-banner { padding: 4rem 1.5rem; }

    .why-us { padding: 4rem 1.5rem; }
    .why-us-header { margin-bottom: 3rem; }
    .why-us-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .why-card { padding: 2rem; }

    .services { padding: 4rem 1rem; }
    .service-card { padding: 2rem 1.5rem; }
    .service-card-number { font-size: 2.5rem; top: 1rem; right: 1.25rem; }
    .service-list li { padding: 0.6rem 0; font-size: 1rem; }
    .service-price { font-size: 0.75rem; }
    .services-note { margin-top: 2.5rem; padding-top: 2rem; }

    .testimonials { padding: 4rem 1.5rem; }
    .testimonials-header { margin-bottom: 3rem; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .testimonial-card { padding: 2rem; }

    .contact { padding: 4rem 1.5rem; }
    .contact-map { aspect-ratio: 4/3; }

    .phone-modal { padding: 2.5rem 2rem; }
    .phone-modal-number { font-size: 1.6rem; }

    .fab-wrapper { bottom: 1.25rem; right: 2rem; }
    .fab-btn { width: 52px; height: 52px; }
    .fab-menu { min-width: 200px; }

    .footer { padding: 2.5rem 1.5rem; }
    .footer p { font-size: 0.65rem; letter-spacing: 1px; }
}

/* --- Mobile (480px) --- */
@media (max-width: 480px) {
    html { font-size: 15px; }

    .navbar { padding: 0.75rem 1rem; }
    .navbar.scrolled { padding: 0.6rem 1rem; }
    .nav-logo { font-size: 1.2rem; letter-spacing: 1px; }

    .hero { min-height: 100svh; }
    .hero-content { padding: 1.5rem; }
    .hero-prelude { letter-spacing: 3px; font-size: 0.6rem; margin-bottom: 1.5rem; }
    .hero-tagline { font-size: 1rem; margin-bottom: 2rem; }
    .hero-cta-group { flex-direction: column; align-items: center; gap: 1rem; }
    .btn-primary, .btn-outline { width: 100%; max-width: 280px; text-align: center; padding: 0.9rem 1.5rem; }

    .page-header { padding: 7rem 1rem 3rem; }
    .section-title { margin-bottom: 1rem; }
    .section-subtitle { font-size: 1rem; }

    .about { padding: 3rem 1rem; }
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    .stat-number { font-size: 1.75rem; }
    .stat-label { font-size: 0.55rem; letter-spacing: 1px; }
    .about-image-border { display: none; }

    .experience-banner { padding: 3rem 1rem; }
    .experience-banner h2 { font-size: 1.4rem; }
    .experience-banner p { font-size: 1rem; }

    .why-us { padding: 3rem 1rem; }

    .services { padding: 3rem 0.75rem; }
    .service-card { padding: 1.5rem 1.25rem; }
    .service-card h3 { font-size: 1.25rem; }
    .service-card-number { font-size: 2rem; top: 0.75rem; right: 1rem; }
    .service-name { font-size: 0.95rem; }
    .service-dots { min-width: 15px; }
    .service-price { font-size: 0.7rem; margin-left: 0.5rem; }
    .service-list li { padding: 0.5rem 0; gap: 0.25rem; }
    .services-note p { font-size: 1rem; }

    .testimonials { padding: 3rem 1rem; }
    .testimonial-card { padding: 1.75rem; }
    .testimonial-text { font-size: 1.05rem; }

    .contact { padding: 3rem 1rem; }
    .contact-info { gap: 2rem; }
    .contact-icon { width: 42px; height: 42px; }
    .contact-item h4 { font-size: 0.65rem; }
    .contact-item p, .contact-item a { font-size: 1rem; }
    .hours-row { font-size: 0.9rem; }
    .contact-map { aspect-ratio: 1; }

    .phone-modal { padding: 2rem 1.5rem; max-width: 340px; }
    .phone-modal h3 { font-size: 1.3rem; }
    .phone-modal-number { font-size: 1.4rem; letter-spacing: 1px; }
    .phone-modal-cta { padding: 0.8rem 2rem; font-size: 0.65rem; }

    .fab-wrapper { bottom: 1rem; right: 1.25rem; }
    .fab-btn { width: 48px; height: 48px; }
    .fab-label { font-size: 0.45rem; letter-spacing: 1px; }
    .fab-btn.active .fab-label { font-size: 1.2rem; }
    .fab-menu { min-width: 190px; bottom: 62px; }
    .fab-menu a { padding: 0.65rem 1.25rem; font-size: 0.7rem; }
    .fab-menu-title { padding: 0.6rem 1.25rem 0.4rem; font-size: 0.55rem; }
    .fab-hint span { font-size: 0.5rem; }

    .footer { padding: 2rem 1rem; }
    .footer-logo { font-size: 1.2rem; }
    .footer-tagline { font-size: 0.9rem; }
    .footer p { font-size: 0.6rem; letter-spacing: 1px; word-spacing: 1px; }
}

/* --- Small mobile (360px) --- */
@media (max-width: 360px) {
    html { font-size: 14px; }

    .hero-content { padding: 1rem; }
    .hero-prelude { font-size: 0.55rem; letter-spacing: 2px; }
    .page-header { padding: 6.5rem 0.75rem 2.5rem; }

    .service-card { padding: 1.25rem 1rem; }
    .service-name { font-size: 0.88rem; }
    .service-price { font-size: 0.65rem; }

    .phone-modal { padding: 1.75rem 1.25rem; }
    .phone-modal-number { font-size: 1.25rem; }

    .fab-wrapper { bottom: 0.75rem; right: 1rem; }
    .fab-btn { width: 44px; height: 44px; }
}

/* --- Safe area for notched phones --- */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .fab-wrapper {
        bottom: calc(1rem + env(safe-area-inset-bottom));
    }
    .footer {
        padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    }
}

/* --- Landscape phone --- */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: 100svh; }
    .hero-content { padding: 1rem; }
    .hero-prelude { margin-bottom: 0.75rem; }
    .hero-title { font-size: 2.5rem; }
    .hero-tagline { margin-bottom: 1rem; font-size: 0.9rem; }
    .page-header { padding: 6rem 1.5rem 2rem; }
    .fab-menu { max-height: 70vh; overflow-y: auto; }
}

/* --- Touch device optimizations --- */
@media (hover: none) and (pointer: coarse) {
    .why-card:hover { transform: none; }
    .testimonial-card:hover { transform: none; box-shadow: 3px 4px 12px rgba(0, 0, 0, 0.15); }
    .service-card:hover { background: transparent; }
    .fab-btn:hover { transform: none; }
}

/* --- Prefers reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal, .reveal-left, .reveal-right {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   BACK TO QUACKBUILDS
   ============================================ */
.back-to-dapps {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: var(--color-charcoal);
    color: var(--color-gold);
    height: 48px;
    padding: 0 1.1rem;
    border-radius: 999px;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(184, 134, 11, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}

.back-to-dapps:hover {
    transform: translateY(-3px);
    border-color: var(--color-gold);
    box-shadow: 0 6px 30px rgba(184, 134, 11, 0.3);
    color: var(--color-gold-light);
}

@media (max-width: 480px) {
    .back-to-dapps {
        bottom: 1rem;
        left: 1.25rem;
        height: 40px;
        font-size: 0.6rem;
        padding: 0 0.9rem;
        letter-spacing: 1px;
    }
}
