/* 
========================================================================
   FRISØR AMAGER 2300 - PREMIUM CUSTOM STYLESHEET
   Aesthetic: Luxurious Light Theme (Cream, Deep Charcoal, Warm Gold/Brass)
========================================================================
*/

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- Root Variables --- */
:root {
    /* Color Palette */
    --bg-primary: #FCFBF9;      /* Elegant warm ivory background */
    --bg-secondary: #F5F2EA;    /* Soft sand-cream secondary background */
    --bg-card: #FFFFFF;         /* Crisp white card background */
    
    --color-primary: #1E2022;   /* Deep charcoal (primary text/headings) */
    --color-secondary: #50555C; /* Muted slate gray (body text) */
    
    --gold-primary: #C5A880;    /* Luxurious warm brass/gold */
    --gold-dark: #A68D65;       /* Shadowed brass */
    --gold-light: #E5C789;      /* Bright highlighted gold */
    --gold-accent: #D4AF37;     /* Pure polished gold */
    
    --barber-red: #C92A2A;      /* Classic subtle barber pole crimson */
    --barber-blue: #1971C2;     /* Classic subtle barber pole steel blue */
    
    /* Typography */
    --font-heading: 'Cinzel', 'Playfair Display', 'Georgia', serif;
    --font-body: 'Outfit', 'Inter', sans-serif;
    
    /* Layout & Shadow Tokens */
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --shadow-subtle: 0 4px 20px rgba(30, 32, 34, 0.04);
    --shadow-medium: 0 10px 30px rgba(30, 32, 34, 0.08);
    --shadow-gold: 0 10px 30px rgba(197, 168, 128, 0.15);
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --container-width: 1200px;
    --header-height: 80px;
}

/* --- Global Resets & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--color-secondary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Typography Utilities --- */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.25;
}

p {
    margin-bottom: 1.5rem;
}

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

.text-gold {
    color: var(--gold-primary);
}

/* --- Common UI Layout Elements --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-bg {
    background-color: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header .badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--gold-primary);
    color: var(--gold-dark);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--barber-red) 0%, var(--gold-primary) 50%, var(--barber-blue) 100%);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-top: 15px;
}

/* --- Interactive Premium Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--bg-primary);
    border: 1px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-primary);
    box-shadow: 0 8px 25px rgba(30, 32, 34, 0.15);
}

.btn-gold {
    background-color: var(--gold-primary);
    color: var(--bg-primary);
    border: 1px solid var(--gold-primary);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold-dark);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--gold-primary);
}

.btn-outline:hover {
    background-color: var(--gold-primary);
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
}

/* --- Header / Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(252, 251, 249, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    height: 70px;
    background-color: rgba(252, 251, 249, 0.95);
    box-shadow: var(--shadow-subtle);
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo brand wrapping */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 54px;
    width: auto;
    border-radius: var(--border-radius-sm);
    border: 1.5px solid var(--gold-primary);
    box-shadow: var(--shadow-subtle);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: var(--transition);
}

.header.scrolled .brand-logo {
    height: 46px;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
}

.brand-sub {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold-dark);
}

/* Header actions: translation & booking */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    border: 1px solid rgba(197, 168, 128, 0.3);
    border-radius: 50px;
    padding: 3px;
    background-color: var(--bg-secondary);
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50%;
    color: var(--color-secondary);
    transition: var(--transition);
}

.lang-btn:hover {
    color: var(--gold-dark);
}

.lang-btn.active {
    background-color: var(--color-primary);
    color: var(--bg-primary);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 4px;
    transition: var(--transition);
}

/* Mobile Actions Container (Hidden on Desktop) */
.nav-mobile-actions {
    display: none;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    min-height: 700px;
    background-color: var(--bg-primary);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

/* Diagonal Background accents */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-color: var(--bg-secondary);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
    height: 100%;
}

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

.hero-badge-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(197, 168, 128, 0.1);
    border: 1px solid rgba(197, 168, 128, 0.3);
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
}

/* Dynamic open status indicator style */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.status-indicator.open {
    background-color: rgba(43, 138, 62, 0.1);
    border: 1px solid rgba(43, 138, 62, 0.3);
    color: #2b8a3e;
}

.status-indicator.closed {
    background-color: rgba(201, 42, 42, 0.1);
    border: 1px solid rgba(201, 42, 42, 0.3);
    color: #c92a2a;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: currentColor;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero h1 span {
    display: block;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.15rem;
    color: var(--color-secondary);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Hero visual representation */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-crest-wrap {
    width: 100%;
    max-width: 360px;
    position: relative;
    padding: 16px;
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--gold-primary);
}

.hero-crest-wrap img {
    border-radius: var(--border-radius-sm);
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

/* Subtle barber pole glow effects */
.hero-crest-wrap::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 1px dashed var(--gold-primary);
    opacity: 0.5;
}

/* Quick Info Ribbon beneath Hero */
.quick-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    box-shadow: 0 -4px 20px rgba(30, 32, 34, 0.02);
    z-index: 10;
    padding: 24px 0;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    border: 1px stroke var(--gold-primary);
}

.info-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.info-text h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-dark);
    margin-bottom: 2px;
    white-space: nowrap;
}

.info-text p {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
    white-space: nowrap;
}

/* --- Services & Pricing --- */
.services-section {
    padding-bottom: 120px;
}

.price-list-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.price-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--barber-red), var(--gold-primary), var(--barber-blue));
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 168, 128, 0.4);
    box-shadow: var(--shadow-medium);
}

.price-card:hover::before {
    height: 100%;
}

.price-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
}

.price-service-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-icon-wrap {
    width: 40px;
    height: 40px;
    background-color: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    transition: var(--transition);
}

.price-card:hover .price-icon-wrap {
    background-color: var(--color-primary);
    color: var(--bg-primary);
}

.price-icon-wrap svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.price-service-name {
    font-size: 1.35rem;
    font-weight: 700;
}

.price-tag {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-dark);
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-currency {
    font-family: var(--font-body);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-secondary);
    margin-top: -2px;
}

.price-desc {
    font-size: 14px;
    color: var(--color-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.price-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed rgba(197, 168, 128, 0.15);
    padding-top: 15px;
}

.price-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-duration svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.price-card-book-cta {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.7;
    transition: var(--transition);
}

.price-card:hover .price-card-book-cta {
    opacity: 1;
    color: var(--color-primary);
}

.price-card-book-cta svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.25s ease;
}

.price-card:hover .price-card-book-cta svg {
    transform: translateX(4px);
}

/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(197, 168, 128, 0.12);
    border-radius: var(--border-radius);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-subtle);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(197, 168, 128, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    margin: 0 auto 20px auto;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--color-primary);
    color: var(--bg-primary);
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--color-secondary);
    margin: 0;
    line-height: 1.5;
}

/* --- About Us Section --- */
.about-section {
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-crest-decor {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: var(--border-radius);
    border: 2px solid var(--gold-primary);
    box-shadow: var(--shadow-medium);
    image-rendering: -webkit-optimize-contrast;
}

.about-content h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--barber-red) 0%, var(--gold-primary) 50%, var(--barber-blue) 100%);
}

.about-content p {
    font-size: 1.05rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.about-cta-wrapper {
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.about-phone-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-phone-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(197, 168, 128, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
}

.about-phone-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.about-phone-txt span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-secondary);
}

.about-phone-txt a {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
}

/* --- Instagram Promo Banner --- */
.instagram-promo {
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    padding: 60px 0;
    text-align: center;
}

.insta-icon-large {
    width: 64px;
    height: 64px;
    background-color: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    margin: 0 auto 20px auto;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.insta-icon-large svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.instagram-promo h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.instagram-promo p {
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: var(--color-secondary);
}

/* --- Contact & Directions --- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
}

/* Opening hours table list */
.hours-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-subtle);
}

.hours-card h3,
.contact-info-wrap h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(197, 168, 128, 0.1);
    font-size: 15px;
}

.hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-row.active {
    font-weight: 700;
    color: var(--color-primary);
}

.hours-row.active .day-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hours-row.active .day-name::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--gold-accent);
}

.hours-row.active .time-val {
    color: var(--gold-dark);
}

/* Contact Info Details */
.contact-info-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 35px;
}

.contact-box h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.contact-box p {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.4;
}

.contact-box .note {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--color-secondary);
    margin-top: 5px;
}

.contact-socials-list {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

.social-circle {
    width: 38px;
    height: 38px;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.social-circle:hover {
    background-color: var(--color-primary);
    color: var(--bg-primary);
}

.social-circle svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Map Frame container */
.map-container {
    width: 100%;
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(197, 168, 128, 0.25);
    box-shadow: var(--shadow-subtle);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.2) contrast(1.05) brightness(0.98);
}

/* --- Footer --- */
.footer {
    background-color: var(--color-primary);
    color: #90949C;
    padding: 80px 0 30px 0;
    font-size: 14px;
    border-top: 2px solid var(--gold-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 60px;
    width: auto;
    align-self: flex-start;
}

.footer-logo path,
.footer-logo rect,
.footer-logo text {
    /* Make footer logo clean on dark background by converting key dark fills */
}

.footer-brand p {
    margin: 0;
    line-height: 1.6;
}

.footer-links-col h3,
.footer-contact-col h3 {
    color: var(--bg-primary);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links-col h3::after,
.footer-contact-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gold-primary);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.footer-links-list a:hover {
    color: var(--bg-primary);
    transform: translateX(4px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold-primary);
    fill: none;
    stroke-width: 2;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item span {
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid rgba(252, 251, 249, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    margin: 0;
}

.footer-credit {
    margin: 0;
    font-size: 13px;
}

/* --- Responsive Adaptations (Breakpoints) --- */

/* Tablet Portrait & Large Mobile (under 992px) */
@media (max-width: 992px) {
    :root {
        --header-height: 70px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .hero {
        height: auto;
        min-height: initial;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: calc(var(--header-height) + 30px);
        padding-bottom: 90px;
    }
    
    .hero::before {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 15px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-crest-wrap {
        max-width: 280px;
    }
    
    .quick-info {
        position: relative;
        bottom: initial;
        left: initial;
        margin-top: 30px; /* Shifted down to fully display the logo card without clipping */
        box-shadow: var(--shadow-medium);
        border: 1px solid rgba(197, 168, 128, 0.15);
        border-radius: var(--border-radius);
    }
    
    .quick-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px 0;
        max-width: 100%;
        margin: 0;
    }
    
    .info-item {
        justify-content: flex-start;
        width: 100%;
    }
    
    .info-text {
        text-align: left;
    }
    
    .price-list-wrap {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .about-visual {
        order: 2;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-cta-wrapper {
        justify-content: center;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .about-cta-wrapper .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    /* Footer layout & text centering on mobile */
    .footer {
        text-align: center;
        padding: 60px 0 30px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-logo {
        align-self: center;
        margin: 0 auto;
    }
    
    .footer-links-col h3::after,
    .footer-contact-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact-item {
        justify-content: center;
        text-align: left;
    }
    
    /* Navigation Bar Mobile Layout */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-primary);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 24px;
        gap: 30px;
        transition: var(--transition);
        border-top: 1px solid rgba(197, 168, 128, 0.15);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav.open {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 22px;
        text-align: center;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .header-actions {
        display: none;
    }
    
    .nav-mobile-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        margin-top: 10px;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hours-card {
        padding: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Extra Small Phone Optimizations (under 576px) */
@media (max-width: 576px) {
    .section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero h1 {
        font-size: 2.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .price-card {
        padding: 24px 16px;
    }
    
    .price-service-name {
        font-size: 1.15rem;
    }
    
    .price-tag {
        font-size: 1.35rem;
    }
    
    .hours-card {
        padding: 20px 16px;
    }
    
    .social-circle {
        width: 46px;
        height: 46px;
    }
    
    .social-circle svg {
        width: 22px;
        height: 22px;
    }
    
    /* Allow text wrapping on compact widths to prevent horizontal overflow */
    .info-text p,
    .info-text h4 {
        white-space: normal;
    }
    
    /* Stack feature cards into a single column */
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Compact Mobile Devices & Narrow Displays (under 480px) */
@media (max-width: 480px) {
    /* Header Brand size scaling to avoid hamburger collisions */
    .brand-logo {
        height: 40px;
    }
    
    .brand-name {
        font-size: 14px;
        letter-spacing: 0.5px;
    }
    
    .brand-sub {
        font-size: 8px;
        letter-spacing: 1px;
    }
    
    .brand {
        gap: 8px;
    }
    
    /* Stack price cards header content vertically to prevent overflow */
    .price-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .price-tag {
        align-items: flex-start;
        margin-left: 50px; /* Aligns with name text offset from the icon */
    }
}

