/* =========================================================
   ANORA MAKEUP STUDIO — Premium Theme Styles
   ========================================================= */

:root {
    --anora-gold: #C79A52;
    --anora-gold-light: #E8C88A;
    --anora-gold-dark: #9A6B31;
    --anora-ivory: #FCFAF7;
    --anora-card: #F6F3EE;
    --anora-white: #FFFFFF;
    --anora-text: #1E1A17;
    --anora-muted: #6B635A;
    --anora-border: #E8DED0;
    --anora-dark: #211D19;
    --anora-shadow: 0 18px 50px rgba(46, 32, 18, 0.09);
    --anora-shadow-lg: 0 28px 70px rgba(46, 32, 18, 0.13);
    --anora-radius: 22px;
    --anora-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--anora-ivory);
    color: var(--anora-text);
    font-family: "Work Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(199, 154, 82, 0.25);
    color: var(--anora-text);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--anora-text);
    font-family: "Cormorant Garamond", "Playfair Display", serif;
}

a {
    transition: all var(--anora-transition);
}

.text-primary { color: var(--anora-gold) !important; }
.bg-primary { background: var(--anora-gold) !important; }
.bg-light { background: var(--anora-card) !important; }
.border-primary { border-color: var(--anora-gold) !important; }

.btn-primary {
    background: var(--anora-gold) !important;
    border-color: var(--anora-gold) !important;
    color: #fff !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 18px rgba(199, 154, 82, 0.25);
    transition: all var(--anora-transition);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--anora-gold-dark) !important;
    border-color: var(--anora-gold-dark) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(199, 154, 82, 0.35);
}

.font-dancing-script {
    color: var(--anora-gold) !important;
}

/* ── Header ── */

.anora-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    width: 100%;
    background: rgba(252, 250, 247, 0.88);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition:
        background var(--anora-transition),
        backdrop-filter var(--anora-transition),
        border-color var(--anora-transition),
        box-shadow var(--anora-transition);
}

.anora-header.is-scrolled {
    background: rgba(252, 250, 247, 0.96);
    backdrop-filter: blur(16px);
    border-bottom-color: rgba(199, 154, 82, 0.15);
    box-shadow: 0 4px 32px rgba(46, 32, 18, 0.07);
}

.anora-nav-wrap {
    width: min(94%, 1440px);
    min-height: 88px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 240px 1fr 140px;
    align-items: center;
    column-gap: 28px;
}

.anora-logo {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    text-decoration: none;
    line-height: 0;
    transition: opacity var(--anora-transition);
}

.anora-logo:hover {
    opacity: 0.82;
}

.anora-logo-img,
.anora-logo .custom-logo {
    display: block;
    height: 58px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.anora-main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2.2vw, 42px);
    justify-self: center;
}

.anora-main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 88px;
    padding: 0;
    font-family: "Work Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--anora-text);
    transition: color var(--anora-transition);
}

.anora-main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 26px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--anora-gold), var(--anora-gold-light));
    transform: translateX(-50%);
    transition: width var(--anora-transition);
}

.anora-main-nav a:hover,
.anora-main-nav a:focus {
    color: var(--anora-gold-dark);
}

.anora-main-nav a:hover::after,
.anora-main-nav a:focus::after {
    width: 100%;
}

.anora-book-btn {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 48px;
    padding: 12px 26px;
    border: 1px solid var(--anora-gold);
    border-radius: 0 0 24px 24px;
    background: var(--anora-gold);
    color: #fff;
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(199, 154, 82, 0.28);
    transition: all var(--anora-transition);
}

.anora-book-btn:hover {
    background: var(--anora-gold-dark);
    border-color: var(--anora-gold-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(199, 154, 82, 0.38);
}

.anora-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgba(199, 154, 82, 0.35);
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.anora-menu-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--anora-text);
    transition: all 0.3s ease;
}

.anora-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.anora-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.anora-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Hero ── */

.anora-hero {
    min-height: 100vh;
    min-height: 700px;
    background:
        radial-gradient(ellipse at 70% 20%, rgba(199, 154, 82, 0.06) 0%, transparent 55%),
        linear-gradient(160deg, var(--anora-ivory) 0%, #fff 50%, var(--anora-card) 100%);
    overflow: hidden;
}

.anora-hero-inner {
    max-width: 1350px;
    width: 90%;
    min-height: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 46% 54%;
    align-items: center;
    gap: 40px;
}

.anora-hero-content {
    padding: 160px 20px 90px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.anora-hero-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    padding: 6px 18px;
    border: 1px solid rgba(199, 154, 82, 0.4);
    color: var(--anora-gold-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.anora-hero-content h1 {
    margin: 0;
    font-size: clamp(52px, 5.2vw, 82px);
    line-height: 1.06;
    font-weight: 500;
    letter-spacing: -1px;
}

.anora-hero-content p {
    max-width: 560px;
    margin: 32px 0 36px;
    color: var(--anora-muted);
    font-size: 19px;
    line-height: 1.75;
    font-style: italic;
}

.anora-services-btn {
    min-width: 180px;
    min-height: 56px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--anora-gold);
    background: var(--anora-gold);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 28px rgba(199, 154, 82, 0.3);
    transition: all var(--anora-transition);
}

.anora-services-btn:hover {
    background: var(--anora-gold-dark);
    border-color: var(--anora-gold-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(199, 154, 82, 0.4);
}

.anora-owner-details {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--anora-border);
}

.anora-owner-label {
    display: block;
    color: var(--anora-gold);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}

.anora-owner-details h3 {
    margin: 0;
    font-size: 32px;
    font-weight: 500;
}

.anora-owner-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    color: var(--anora-text);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
}

.anora-owner-phone i {
    color: var(--anora-gold);
}

.anora-owner-phone:hover {
    color: var(--anora-gold-dark);
}

.anora-hero-image-wrap {
    min-height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 88px;
}

.anora-hero-image-wrap::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 154, 82, 0.12) 0%, transparent 70%);
    z-index: 0;
}

.anora-hero-image-wrap::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(199, 154, 82, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.anora-hero-image {
    width: 72%;
    max-width: 500px;
    max-height: 540px;
    height: auto;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 24px 48px rgba(46, 32, 18, 0.12));
}

/* ── Section headings ── */

.anora-section-heading {
    margin-bottom: 48px;
    text-align: center;
}

.anora-section-heading .font-dancing-script {
    font-size: clamp(32px, 3.5vw, 44px);
    margin-bottom: 6px;
}

.anora-section-heading h2 {
    margin: 0;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 500;
    line-height: 1.15;
}

.anora-section-divider {
    width: 60px;
    height: 2px;
    margin: 22px auto 0;
    background: linear-gradient(90deg, transparent, var(--anora-gold), transparent);
}

/* ── About ── */

#about {
    background: var(--anora-white);
    padding: 100px 0;
}

.anora-about-image-wrap {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--anora-card);
    border: 1px solid var(--anora-border);
    overflow: hidden;
    position: relative;
}

.anora-about-image-wrap::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border: 1px solid rgba(199, 154, 82, 0.25);
    pointer-events: none;
}

.anora-about-image {
    width: 100%;
    max-width: 420px;
    height: 540px;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.anora-about-title {
    margin: 10px 0 24px;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.15;
}

.anora-about-text {
    color: var(--anora-muted);
    font-size: 17px;
    line-height: 1.85;
}

.anora-about-text strong {
    color: var(--anora-text);
}

.anora-about-stat {
    height: 100%;
    background: var(--anora-card);
    border: 1px solid var(--anora-border);
    border-radius: 16px;
    transition: all var(--anora-transition);
}

.anora-about-stat:hover {
    border-color: var(--anora-gold);
    box-shadow: var(--anora-shadow);
    transform: translateY(-4px);
}

/* ── Services ── */

.anora-services-section {
    padding: 100px 0;
    background: var(--anora-ivory);
}

.anora-services-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(340px, 1fr);
    gap: 28px;
    align-items: stretch;
}

.anora-service-feature {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    border-radius: var(--anora-radius);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: var(--anora-shadow-lg);
    transition: background-image 0.5s ease;
}

.anora-service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(21, 14, 9, 0.85) 0%,
        rgba(21, 14, 9, 0.5) 45%,
        rgba(21, 14, 9, 0.1) 100%
    );
}

.anora-service-feature-content {
    position: absolute;
    left: 52px;
    right: 52px;
    bottom: 52px;
    z-index: 2;
    max-width: 540px;
}

.anora-service-feature-content h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.1;
}

.anora-service-feature-content p {
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.7;
    font-family: "Work Sans", sans-serif;
}

.anora-portfolio-btn {
    min-width: 180px;
    min-height: 54px;
    padding: 0 28px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--anora-gold);
    border: 1px solid var(--anora-gold);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all var(--anora-transition);
}

.anora-portfolio-btn:hover {
    background: var(--anora-gold-dark);
    border-color: var(--anora-gold-dark);
    color: #fff;
    transform: translateY(-2px);
}

.anora-service-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.anora-service-option {
    width: 100%;
    min-height: 108px;
    padding: 14px;
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 18px;
    align-items: center;
    border: 1px solid var(--anora-border);
    border-radius: 18px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: all var(--anora-transition);
}

.anora-service-option:hover {
    transform: translateX(4px);
    border-color: var(--anora-gold);
    box-shadow: var(--anora-shadow);
}

.anora-service-option.active {
    border-color: var(--anora-gold);
    background: var(--anora-card);
    box-shadow: var(--anora-shadow);
}

.anora-service-option img {
    width: 108px;
    height: 84px;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.anora-option-text h4 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 600;
}

.anora-option-text p {
    margin: 0;
    color: var(--anora-muted);
    font-size: 14px;
    line-height: 1.5;
    font-family: "Work Sans", sans-serif;
}

/* ── Portfolio ── */

.anora-portfolio-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: var(--anora-white);
}

.anora-portfolio-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--anora-gold), transparent);
}

.anora-portfolio-heading {
    margin: 8px 0 48px;
    font-size: clamp(38px, 4vw, 54px);
}

.anora-portfolio-slider-wrap {
    position: relative;
    width: 100%;
    padding: 0 62px;
}

.anora-portfolio-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.anora-portfolio-slider::-webkit-scrollbar {
    display: none;
}

.anora-portfolio-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    scroll-snap-align: start;
}

.anora-portfolio-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border: 1px solid var(--anora-gold);
    background: var(--anora-ivory);
    color: var(--anora-gold-dark);
    font-size: 22px;
    cursor: pointer;
    transition: all var(--anora-transition);
}

.anora-portfolio-prev { left: 0; }
.anora-portfolio-next { right: 0; }

.anora-portfolio-arrow:hover {
    background: var(--anora-gold);
    color: #fff;
}

.anora-portfolio-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.anora-portfolio-card {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: var(--anora-card);
    border-radius: 4px;
}

.anora-portfolio-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.anora-portfolio-card:hover .anora-portfolio-image {
    transform: scale(1.06);
}

.anora-portfolio-overlay {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 22px 18px;
    background: rgba(252, 250, 247, 0.95);
    border: 1px solid rgba(199, 154, 82, 0.25);
    text-align: center;
    backdrop-filter: blur(8px);
}

.anora-portfolio-category {
    margin: 0 0 6px;
    color: var(--anora-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Work Sans", sans-serif;
}

.anora-portfolio-overlay h3 {
    margin: 0 0 8px;
    font-size: 26px;
}

.anora-portfolio-description {
    margin: 0 0 16px;
    color: var(--anora-muted);
    font-size: 14px;
    line-height: 1.55;
    font-family: "Work Sans", sans-serif;
}

.anora-portfolio-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.anora-portfolio-socials a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--anora-gold);
    color: var(--anora-text);
    text-decoration: none;
    font-size: 18px;
    transition: all var(--anora-transition);
}

.anora-portfolio-socials a:hover {
    background: var(--anora-gold);
    color: #fff;
    transform: translateY(-3px);
}

/* ── Testimonials ── */

.anora-testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--anora-ivory) 0%, var(--anora-white) 100%);
}

.anora-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.anora-testimonial-card {
    padding: 36px 28px;
    background: #fff;
    border: 1px solid var(--anora-border);
    border-radius: var(--anora-radius);
    text-align: center;
    transition: all var(--anora-transition);
    position: relative;
}

.anora-testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 20px;
    left: 24px;
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    line-height: 1;
    color: rgba(199, 154, 82, 0.2);
}

.anora-testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(199, 154, 82, 0.4);
    box-shadow: var(--anora-shadow-lg);
}

.anora-testimonial-stars {
    color: var(--anora-gold);
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.anora-testimonial-quote {
    margin: 0 0 28px;
    color: var(--anora-muted);
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    font-family: "Work Sans", sans-serif;
}

.anora-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.anora-testimonial-avatar {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--anora-gold), var(--anora-gold-dark));
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 600;
}

.anora-testimonial-author h4 {
    margin: 0 0 2px;
    font-size: 18px;
    font-weight: 600;
}

.anora-testimonial-author span {
    color: var(--anora-muted);
    font-size: 13px;
    font-family: "Work Sans", sans-serif;
}

/* ── Contact ── */

.anora-contact-section {
    padding: 100px 0;
    background: var(--anora-ivory);
}

.anora-contact-heading {
    margin: 8px 0 0;
    font-size: clamp(38px, 4vw, 54px);
}

.anora-contact-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    gap: 48px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.anora-contact-info {
    padding: 44px;
    border-radius: var(--anora-radius);
    background: var(--anora-dark);
    color: #fff;
    box-shadow: var(--anora-shadow-lg);
}

.anora-contact-item {
    padding: 0 0 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.anora-contact-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.anora-contact-item span {
    display: block;
    margin-bottom: 10px;
    color: var(--anora-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.anora-contact-item a,
.anora-contact-item p {
    margin: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.65;
    text-decoration: none;
    font-family: "Work Sans", sans-serif;
}

.anora-contact-item a:hover {
    color: var(--anora-gold-light);
}

.anora-contact-form-wrap {
    padding: 44px;
    border: 1px solid var(--anora-border);
    border-radius: var(--anora-radius);
    background: #fff;
    box-shadow: var(--anora-shadow);
}

.anora-contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.anora-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.anora-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.anora-form-group label {
    font-size: 14px;
    font-weight: 600;
    font-family: "Work Sans", sans-serif;
}

.anora-form-group label strong {
    color: var(--anora-gold-dark);
}

.anora-form-group input,
.anora-form-group select,
.anora-form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid var(--anora-border);
    border-radius: 12px;
    background: var(--anora-ivory);
    color: var(--anora-text);
    font-family: "Work Sans", sans-serif;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.anora-form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.anora-form-group input:focus,
.anora-form-group select:focus,
.anora-form-group textarea:focus {
    border-color: var(--anora-gold);
    box-shadow: 0 0 0 3px rgba(199, 154, 82, 0.12);
}

.anora-contact-submit {
    width: 100%;
    min-height: 56px;
    padding: 14px 24px;
    border: 1px solid var(--anora-gold);
    border-radius: 30px;
    background: var(--anora-gold);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(199, 154, 82, 0.28);
    transition: all var(--anora-transition);
}

.anora-contact-submit:hover {
    background: var(--anora-gold-dark);
    border-color: var(--anora-gold-dark);
    transform: translateY(-2px);
}

/* ── Footer ── */

.anora-footer {
    padding: 72px 0 52px;
    background: var(--anora-dark);
    color: #fff;
    border-top: 1px solid rgba(199, 154, 82, 0.2);
}

.anora-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.65fr 0.9fr;
    gap: 60px;
    align-items: start;
}

.anora-footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    line-height: 0;
    transition: opacity var(--anora-transition);
}

.anora-footer-logo:hover {
    opacity: 0.85;
}

.anora-footer-logo-img,
.anora-footer-logo .custom-logo {
    display: block;
    height: 56px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.anora-footer-tagline {
    max-width: 520px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    line-height: 1.75;
}

.anora-footer-contact-boxes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.anora-footer-contact-box {
    min-height: 84px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(199, 154, 82, 0.2);
    color: #fff;
    text-decoration: none;
    transition: all var(--anora-transition);
}

.anora-footer-contact-box i {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--anora-gold);
    color: #fff;
    font-size: 16px;
}

.anora-footer-contact-box span {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 14px;
    line-height: 1.35;
}

.anora-footer-contact-box small {
    color: var(--anora-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.anora-footer-contact-box:hover {
    background: rgba(199, 154, 82, 0.12);
    border-color: var(--anora-gold);
}

.anora-footer h3 {
    margin: 0 0 22px;
    color: var(--anora-gold);
    font-size: 24px;
}

.anora-footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.anora-footer-links a {
    position: relative;
    margin-bottom: 12px;
    padding-left: 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    text-decoration: none;
    font-family: "Work Sans", sans-serif;
}

.anora-footer-links a::before {
    content: "›";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--anora-gold);
    font-size: 20px;
}

.anora-footer-links a:hover {
    color: var(--anora-gold);
    transform: translateX(4px);
}

.anora-footer-appointment p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.7;
}

.anora-footer-book-btn {
    min-height: 52px;
    padding: 14px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--anora-gold);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--anora-transition);
}

.anora-footer-book-btn:hover {
    background: var(--anora-gold-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Copyright ── */

.anora-copyright {
    padding: 20px 0;
    background: #1a1714;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    border-top: 1px solid rgba(199, 154, 82, 0.15);
}

.anora-copyright a {
    color: var(--anora-gold);
    text-decoration: none;
}

.anora-copyright a:hover {
    color: var(--anora-gold-light);
}

/* ── Back to top ── */

.back-to-top {
    background: var(--anora-gold) !important;
    border-color: var(--anora-gold) !important;
    box-shadow: 0 6px 20px rgba(199, 154, 82, 0.35);
    transition: all var(--anora-transition);
}

.back-to-top:hover {
    background: var(--anora-gold-dark) !important;
    transform: translateY(-3px);
}

/* ── Responsive ── */

@media (max-width: 1199px) {
    .anora-services-showcase {
        grid-template-columns: 1.45fr 1fr;
    }

    .anora-service-feature {
        min-height: 600px;
    }

    .anora-service-option {
        grid-template-columns: 90px 1fr;
    }

    .anora-service-option img {
        width: 90px;
        height: 76px;
    }
}

@media (max-width: 1100px) {
    .anora-nav-wrap {
        grid-template-columns: 200px 1fr 120px;
        column-gap: 18px;
    }

    .anora-main-nav {
        gap: 18px;
    }

    .anora-main-nav a {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .anora-hero,
    .anora-hero-inner {
        min-height: auto;
    }

    .anora-hero-inner {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .anora-hero-content {
        padding: 130px 24px 36px;
        align-items: center;
        text-align: center;
    }

    .anora-hero-content h1 {
        font-size: clamp(44px, 11vw, 64px);
    }

    .anora-hero-content p {
        margin: 24px 0 28px;
        font-size: 17px;
        text-align: center;
    }

    .anora-hero-image-wrap {
        min-height: 440px;
        padding: 10px 20px 48px;
    }

    .anora-hero-image {
        width: 78%;
        max-height: 420px;
    }

    .anora-services-section,
    .anora-portfolio-section,
    .anora-testimonials-section,
    .anora-contact-section,
    #about {
        padding: 70px 0;
    }

    .anora-services-showcase {
        grid-template-columns: 1fr;
    }

    .anora-service-feature {
        min-height: 520px;
    }

    .anora-service-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .anora-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .anora-portfolio-slider-wrap {
        padding: 0 52px;
    }

    .anora-portfolio-slide {
        flex-basis: calc((100% - 24px) / 2);
    }

    .anora-contact-grid {
        grid-template-columns: 1fr;
    }

    .anora-contact-info,
    .anora-contact-form-wrap {
        padding: 32px;
    }

    .anora-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .anora-footer-brand {
        grid-column: 1 / -1;
    }

    .anora-about-image {
        max-width: 380px;
        height: 480px;
    }

    .anora-about-title,
    .anora-about-text {
        text-align: center;
    }

    #about .font-dancing-script {
        text-align: center;
    }

    #about .btn-primary {
        display: flex;
        width: fit-content;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .anora-nav-wrap {
        position: relative;
        min-height: 76px;
        padding: 0 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .anora-logo {
        flex-shrink: 0;
    }

    .anora-logo-img,
    .anora-logo .custom-logo {
        height: 46px;
        max-width: 170px;
    }

    .anora-menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .anora-main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
        width: 100%;
        padding: 16px 20px 22px;
        flex-direction: column;
        align-items: center;
        gap: 0;
        background: rgba(252, 250, 247, 0.98);
        backdrop-filter: blur(16px);
        border-top: 1px solid rgba(199, 154, 82, 0.15);
        border-bottom: 1px solid rgba(199, 154, 82, 0.2);
        box-shadow: 0 16px 40px rgba(46, 32, 18, 0.1);
    }

    .anora-main-nav.is-open {
        display: flex;
    }

    .anora-main-nav a {
        width: 100%;
        height: auto;
        padding: 14px 10px;
        text-align: center;
    }

    .anora-main-nav a::after {
        bottom: 6px;
    }

    .anora-book-btn {
        display: none;
    }
}

@media (max-width: 650px) {
    .anora-service-feature {
        min-height: 480px;
        border-radius: 16px;
    }

    .anora-service-feature-content {
        left: 24px;
        right: 24px;
        bottom: 28px;
    }

    .anora-service-list {
        grid-template-columns: 1fr;
    }

    .anora-portfolio-card {
        height: 480px;
    }
}

@media (max-width: 575px) {
    .anora-hero-image-wrap {
        min-height: 380px;
    }

    .anora-hero-image {
        width: 88%;
        max-height: 360px;
    }

    .anora-about-image-wrap {
        padding: 16px;
    }

    .anora-about-image {
        height: 400px;
    }

    .anora-portfolio-slider-wrap {
        padding: 0 44px;
    }

    .anora-portfolio-slider {
        gap: 14px;
    }

    .anora-portfolio-slide {
        flex-basis: 100%;
    }

    .anora-portfolio-arrow {
        width: 36px;
        height: 42px;
        font-size: 18px;
    }

    .anora-form-row {
        grid-template-columns: 1fr;
    }

    .anora-contact-info,
    .anora-contact-form-wrap {
        padding: 22px;
        border-radius: 16px;
    }

    .anora-footer {
        padding: 48px 0 36px;
    }

    .anora-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .anora-footer-contact-boxes {
        grid-template-columns: 1fr;
    }

    .anora-footer-logo-img {
        height: 48px;
        max-width: 200px;
    }
}

/* =========================================================
   SERVICES & PORTFOLIO PAGES
   ========================================================= */

.anora-page {
    overflow: hidden;
    background: var(--anora-ivory);
}

.anora-page-hero {
    position: relative;
    padding: 160px 24px 100px;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(199, 154, 82, 0.12) 0%, transparent 55%),
        linear-gradient(160deg, var(--anora-ivory) 0%, #fff 45%, var(--anora-card) 100%);
    border-bottom: 1px solid var(--anora-border);
}

.anora-page-hero--portfolio {
    background:
        radial-gradient(ellipse at 70% 30%, rgba(199, 154, 82, 0.14) 0%, transparent 50%),
        linear-gradient(165deg, #fff 0%, var(--anora-ivory) 55%, var(--anora-card) 100%);
}

.anora-page-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

.anora-page-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    padding: 7px 18px;
    border: 1px solid rgba(199, 154, 82, 0.4);
    color: var(--anora-gold-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.anora-page-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -1px;
}

.anora-page-hero p {
    max-width: 620px;
    margin: 0 auto 32px;
    color: var(--anora-muted);
    font-size: 18px;
    line-height: 1.8;
    font-style: italic;
}

.anora-page-section {
    padding: 90px 0;
    background: var(--anora-white);
}

.anora-service-cards {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.anora-service-card {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    overflow: hidden;
    background: var(--anora-ivory);
    border: 1px solid var(--anora-border);
    border-radius: var(--anora-radius);
    box-shadow: var(--anora-shadow);
}

.anora-service-card--reverse .anora-service-card-image {
    order: 2;
}

.anora-service-card-image {
    min-height: 420px;
    overflow: hidden;
}

.anora-service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.anora-service-card:hover .anora-service-card-image img {
    transform: scale(1.05);
}

.anora-service-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 44px;
}

.anora-service-card-body span {
    display: block;
    margin-bottom: 14px;
    color: var(--anora-gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
}

.anora-service-card-body h3 {
    margin: 0 0 16px;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 500;
}

.anora-service-card-body p {
    margin: 0 0 22px;
    color: var(--anora-muted);
    font-size: 16px;
    line-height: 1.75;
    font-family: "Work Sans", sans-serif;
}

.anora-service-card-body ul {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.anora-service-card-body li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 22px;
    color: var(--anora-text);
    font-size: 15px;
    font-family: "Work Sans", sans-serif;
}

.anora-service-card-body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--anora-gold);
}

.anora-service-card-body > a {
    align-self: flex-start;
    color: var(--anora-gold-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid var(--anora-gold);
    padding-bottom: 4px;
}

.anora-service-card-body > a:hover {
    color: var(--anora-text);
    border-color: var(--anora-text);
}

.anora-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.anora-portfolio-grid-card {
    overflow: hidden;
    background: var(--anora-card);
    border: 1px solid var(--anora-border);
    border-radius: 4px;
    transition: transform var(--anora-transition), box-shadow var(--anora-transition);
}

.anora-portfolio-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--anora-shadow-lg);
}

.anora-portfolio-grid-media {
    height: 360px;
    overflow: hidden;
    position: relative;
}

.anora-portfolio-card {
    position: relative;
}

.anora-portfolio-play {
    position: absolute;
    left: 50%;
    top: 42%;
    z-index: 4;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(199, 154, 82, 0.92);
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(46, 32, 18, 0.28);
    transition: transform 0.3s ease, background 0.3s ease;
}

.anora-portfolio-play:hover {
    background: var(--anora-gold-dark);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.06);
}

.anora-portfolio-card .anora-portfolio-play {
    top: 38%;
}

.anora-portfolio-grid-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.anora-portfolio-grid-card:hover .anora-portfolio-grid-media img {
    transform: scale(1.06);
}

.anora-portfolio-grid-content {
    padding: 24px 22px 28px;
    text-align: center;
    background: #fff;
}

.anora-portfolio-grid-content h3 {
    margin: 0 0 8px;
    font-size: 24px;
}

.anora-page-cta {
    padding: 80px 0;
    background: var(--anora-dark);
    color: #fff;
}

.anora-page-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.anora-page-cta h2 {
    margin: 8px 0 12px;
    color: #fff;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
}

.anora-page-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.7;
    max-width: 520px;
}

.anora-page-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}

.anora-page-cta-link {
    color: var(--anora-gold-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(232, 200, 138, 0.5);
    padding-bottom: 4px;
}

.anora-page-cta-link:hover {
    color: #fff;
    border-color: #fff;
}

@media (max-width: 991px) {
    .anora-page-hero {
        padding: 130px 20px 70px;
    }

    .anora-service-card,
    .anora-service-card--reverse {
        grid-template-columns: 1fr;
    }

    .anora-service-card--reverse .anora-service-card-image {
        order: 0;
    }

    .anora-service-card-image {
        min-height: 320px;
    }

    .anora-service-card-body {
        padding: 32px 28px;
    }

    .anora-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .anora-page-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .anora-page-cta p {
        margin: 0 auto;
    }

    .anora-page-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .anora-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .anora-portfolio-grid-media {
        height: 420px;
    }
}
