@import url("//fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Italiana&family=Jost:ital,wght@0,300..700;1,400&display=swap");
@import url(variable.css);

/* ==========================================================
   Base
========================================================== */
html { scroll-behavior: smooth; }

body {
    margin: 0;
    padding: 0;
    color: var(--ink-warm);
    font-family: var(--font-primary);
    font-size: var(--font-body-lg);
    font-weight: 400;
    line-height: 1.65;
    background: var(--ivory);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--color-primary); color: var(--color-secondary); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 500;
    letter-spacing: 0.005em;
    line-height: 1.08;
    margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5.2vw, 4.25rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.25rem); }
h3 { font-size: clamp(1.6rem, 3.2vw, 2.5rem); }

a { color: var(--color-primary); transition: color .35s ease, opacity .35s ease; }
a:hover { color: var(--gold-dark); }

.container {
    @media (min-width: 1200px) { max-width: 1180px; }
}

/* Reusable ornamental divider: thin gold rule with a centered diamond */
.gold-rule {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; margin: 10px auto 28px;
    color: var(--color-primary);
}
.gold-rule::before, .gold-rule::after {
    content: ""; flex: 0 0 64px; height: 1px;
    background: linear-gradient(to right, transparent, var(--color-primary), transparent);
}
.gold-rule svg { width: 14px; height: 14px; fill: var(--color-primary); }

/* Section eyebrow label */
.eyebrow {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 14px;
}

/* Gold-fill heading accent */
.gold-script {
    font-family: var(--display-font);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ==========================================================
   Top Bar
========================================================== */
.topbarbgwrap {
    background-color: var(--noir);
    border-bottom: 1px solid rgba(212, 169, 74, 0.18);
    position: relative;
}
.topbarbgwrap::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
    background: var(--gold-gradient-soft);
}

.contactinfo {
    font-family: var(--font-primary);
    font-size: var(--font-body-sm);
    color: var(--champagne);
    letter-spacing: 0.04em;
}
.contactinfo a { color: var(--champagne) !important; }
.contactinfo a:hover { color: var(--color-primary) !important; }

.toprightcol a:not(.btnstyleone),
.toprightcol p {
    color: var(--champagne);
    margin-bottom: 0;
    font-family: var(--font-primary);
    font-size: var(--font-body-sm);
    font-weight: 400;
    letter-spacing: 0.08em;
}

/* ==========================================================
   Buttons
========================================================== */
.btnstyleone {
    border-radius: var(--bordert-radius-xl);
    border: 1px solid var(--color-primary);
    padding: 9px 22px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: var(--font-body-sm);
    background: transparent;
    text-decoration: none;
    color: var(--color-primary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all .4s ease;
}
.btnstyleone:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
    box-shadow: var(--shadow-gold);
}

/* Primary gold CTA (hero etc) */
.btnstyletwo {
    position: relative;
    padding: 18px 36px !important;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 1;
    color: var(--color-secondary);
    font-size: 14px;
    background: var(--color-primary);
    text-decoration: none;
    display: inline-flex !important;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--color-primary);
    border-radius: var(--bordert-radius-xs);
    transition: all .45s cubic-bezier(.2,.7,.2,1);
    overflow: hidden;
    isolation: isolate;
}
.btnstyletwo::before {
    content: ""; position: absolute; inset: 0;
    background: var(--color-secondary);
    transform: translateY(101%);
    transition: transform .5s cubic-bezier(.7,.02,.2,1);
    z-index: -1;
}
.btnstyletwo::after {
    content: "→";
    font-family: var(--heading-font);
    font-size: 16px; font-weight: 400;
    transition: transform .4s ease;
}
.btnstyletwo:hover { color: var(--color-primary); border-color: var(--color-primary); }
.btnstyletwo:hover::before { transform: translateY(0); }
.btnstyletwo:hover::after { transform: translateX(6px); }

/* Outlined gold secondary */
.btnstylethree {
    background: transparent;
    border: 1px solid var(--color-primary);
    padding: 16px 36px;
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-primary);
    text-decoration: none;
    text-align: center;
    font-family: var(--font-primary);
    font-weight: 500;
    display: inline-block;
    margin: 60px auto 0;
    transition: all .45s ease;
    border-radius: var(--bordert-radius-xs);
}
.btnstylethree:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
    box-shadow: var(--shadow-gold);
}

/* ==========================================================
   Cart badge
========================================================== */
.cart-count {
    position: absolute;
    top: 6px; right: 2px;
    line-height: 20px;
    height: 20px; width: 20px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-secondary);
    text-align: center;
    font-family: var(--font-primary);
    border: 1.5px solid var(--noir);
}

/* ==========================================================
   Navbar
========================================================== */
.navbar-wrapper .dropdown {
    display: flex;
    flex-direction: row;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    align-items: center;
}

.navbar { padding: 0 !important; z-index: 9999; }

.navbar-nav { align-items: center; }

li.nav-item { margin-right: 4px; }
ul.navbar-nav li:last-child { margin-right: 0; }

.navbar-wrapper a.active,
.nav-item a.active { position: relative; }
.navbar-wrapper a.active:after,
.nav-item a.active:after {
    height: 1px; width: 24px;
    content: " ";
    background: var(--color-primary);
    position: absolute;
    bottom: 8px; left: 50%;
    transform: translateX(-50%);
}

.navbar-wrapper a,
.nav-item a {
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    color: var(--champagne);
    padding: 20px 16px !important;
    font-family: var(--font-primary);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    display: block;
    transition: color .35s ease;
}

.navbar-wrapper a:hover { color: var(--color-primary); }

.navbar-wrapper ul li { position: relative; }

.navbar-wrapper ul li > ul {
    list-style: none;
    display: none;
    position: absolute;
    left: 0; top: 100%;
    margin: 0;
    background-color: var(--noir);
    padding: 8px 0;
    border-top: 2px solid var(--color-primary);
    border-bottom: 1px solid rgba(212, 169, 74, 0.2);
    min-width: 220px;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.navbar-wrapper ul li > ul a {
    white-space: nowrap;
    display: block;
    padding: 10px 18px !important;
    color: var(--champagne);
    letter-spacing: 0.14em;
    font-size: 12px;
}
.navbar-wrapper ul li > ul a:hover { color: var(--color-primary); background: rgba(212,169,74,0.06); }
.navbar-wrapper ul li:hover > ul { display: block; }

/* Hamburger tint */
.navbar-toggler { border-color: rgba(212,169,74,0.4); }
.navbar-toggler:focus { box-shadow: 0 0 0 2px rgba(212,169,74,0.3); }
.navbar-toggler-icon { color: var(--color-primary); }

/* ==========================================================
   HERO — royal overlay on header image
========================================================== */
.section-hero {
    position: relative;
    overflow: hidden;
    background-color: var(--noir);
    isolation: isolate;
}
.section-hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(212, 169, 74, 0.18), transparent 60%),
        linear-gradient(180deg, rgba(5, 4, 4, 0.55) 0%, rgba(5, 4, 4, 0.75) 55%, rgba(5, 4, 4, 0.92) 100%);
    z-index: 1;
}
.section-hero > .container { position: relative; z-index: 2; }

/* Noise/grain overlay on hero */
.section-hero::after {
    content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .83 0 0 0 0 .66 0 0 0 0 .29 0 0 0 .07 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    opacity: 0.55;
    mix-blend-mode: screen;
}

.welcometext {
    background: transparent;
    padding: 0;
    color: var(--accent-color-first);
    backdrop-filter: none;
    position: relative;
    z-index: 3;
}

.welcometext .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 28px;
    animation: fadeDown .9s .1s ease both;
}
.welcometext .hero-eyebrow::before {
    content: ""; width: 32px; height: 1px; background: var(--color-primary);
}

.welcometext h1 {
    font-family: var(--heading-font);
    font-size: clamp(2.75rem, 6vw, 5rem);
    color: var(--accent-color-first);
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: -0.005em;
    text-shadow: 0 2px 30px rgba(0,0,0,0.6);
    margin-bottom: 24px;
    animation: fadeDown 1s .25s ease both;
}
.welcometext h1 em {
    font-style: italic;
    color: var(--color-primary);
    font-family: var(--display-font);
    font-weight: 400;
}

.welcometext h6 {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: var(--font-body-xl);
    color: rgba(247, 241, 227, 0.88);
    line-height: 1.7;
    margin: 0 0 40px;
    max-width: 38ch;
    animation: fadeDown 1s .4s ease both;
}

.section-hero .btnstyletwo {
    animation: fadeDown 1s .55s ease both;
}

/* Decorative crown & sparkle markers in hero */
.hero-ornament {
    position: absolute;
    z-index: 2;
    color: var(--color-primary);
    opacity: 0.35;
    pointer-events: none;
}
.hero-ornament--crown {
    top: 14%; right: 8%; width: 120px;
    animation: floaty 8s ease-in-out infinite;
}
.hero-ornament--spark-1 { top: 26%; right: 32%; width: 20px; animation: twinkle 3.8s ease-in-out infinite; }
.hero-ornament--spark-2 { bottom: 32%; right: 14%; width: 14px; animation: twinkle 4.6s ease-in-out infinite .6s; }
.hero-ornament--spark-3 { top: 58%; right: 44%; width: 10px; animation: twinkle 3.2s ease-in-out infinite 1.2s; }

@keyframes fadeDown { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes twinkle { 0%,100% { opacity: .15; transform: scale(0.85); } 50% { opacity: .9; transform: scale(1.1); } }

/* ==========================================================
   Feature strip (3 columns)
========================================================== */
.product-service-wrap {
    background-color: var(--noir);
    padding: 80px 0 88px;
    position: relative;
    border-top: 1px solid rgba(212,169,74,0.14);
    border-bottom: 1px solid rgba(212,169,74,0.14);
}
.product-service-wrap::before,
.product-service-wrap::after {
    content: ""; position: absolute; left: 0; right: 0; height: 1px;
    background: var(--gold-gradient-soft);
}
.product-service-wrap::before { top: -1px; }
.product-service-wrap::after  { bottom: -1px; }

.prodsercol1_3 {
    text-align: center;
    padding: 20px 14px;
    position: relative;
    transition: transform .45s ease;
}
.prodsercol1_3::before {
    content: ""; position: absolute; left: 50%; top: 0;
    width: 1px; height: 28px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity .4s ease, height .4s ease;
}
.prodsercol1_3:hover { transform: translateY(-4px); }
.prodsercol1_3:hover::before { opacity: 1; height: 40px; }

.prodsercol1_3 .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, rgba(212, 169, 74, 0.22), rgba(212, 169, 74, 0.04) 70%);
    border: 1px solid rgba(212, 169, 74, 0.45);
    margin-bottom: 6px;
    position: relative;
    transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease;
}
.prodsercol1_3 .feature-icon::after {
    content: "";
    position: absolute; inset: 6px;
    border-radius: 50%;
    border: 1px solid rgba(212, 169, 74, 0.18);
}
.prodsercol1_3 .feature-icon svg {
    width: 30px; height: 30px;
    color: var(--color-primary);
    position: relative; z-index: 1;
}
.prodsercol1_3:hover .feature-icon {
    transform: translateY(-2px) rotate(-3deg);
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px -6px rgba(212, 169, 74, 0.35);
}
.prodsercol1_3 img {
    display: none;
}

.prodsercol1_3 h4 {
    font-family: var(--heading-font);
    color: var(--champagne);
    line-height: 1.2;
    font-size: 26px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.prodsercol1_3 p {
    color: rgba(234, 216, 168, 0.7);
    font-family: var(--font-primary);
    line-height: 1.7;
    font-size: var(--font-body-md);
    font-weight: 300;
    max-width: 32ch;
    margin: 0 auto;
}

/* ==========================================================
   Product Categories
========================================================== */
.prodcatmainwrap {
    max-width: 1240px;
    width: 94%;
    margin: 80px auto;
    background-color: var(--ivory);
    border-radius: var(--bordert-radius-lg);
    box-shadow: var(--shadow-regal);
    position: relative;
    overflow: hidden;
}
.prodcatmainwrap::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gold-gradient);
}

.prodcatwrap { padding: 80px 32px 40px; }

.prodcatwrap .section-title {
    color: var(--color-secondary);
    font-family: var(--heading-font);
    line-height: 1.1;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    margin-bottom: 8px;
}

.prodcatwrap .prod-info {
    padding: 12px;
    border-radius: var(--bordert-radius-md);
    border: 1px solid rgba(10, 9, 8, 0.08);
    margin-bottom: 32px;
    text-decoration: none;
    display: block;
    background: #fff;
    transition: all .45s cubic-bezier(.2,.7,.2,1);
    position: relative;
    overflow: hidden;
}
.prodcatwrap .prod-info::after {
    content: ""; position: absolute; inset: 0; border-radius: var(--bordert-radius-md);
    box-shadow: 0 0 0 0 var(--color-primary);
    transition: box-shadow .4s ease;
    pointer-events: none;
}
.prodcatwrap .prod-info:hover::after { box-shadow: 0 0 0 1px var(--color-primary); }

.prodcatwrap .prod-info h6 {
    font-size: var(--font-body-xl);
    color: var(--ink-warm);
    font-weight: 500;
    font-family: var(--heading-font);
    line-height: 1.3;
    text-align: center;
    padding: 18px 10px 12px;
    margin-bottom: 0;
    height: 80px;
    letter-spacing: 0.005em;
}

/* ==========================================================
   Parallax separator
========================================================== */
section.tw-w-full.tw-bg-fixed {
    position: relative;
}
section.tw-w-full.tw-bg-fixed::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(212,169,74,0.18) 0%, transparent 60%),
        linear-gradient(180deg, rgba(5,4,4,0.65), rgba(5,4,4,0.85));
}

/* ==========================================================
   Let Us Help You (Services)
========================================================== */
.letushelpyouwrap {
    position: relative;
    text-align: center;
    background: var(--color-secondary);
    padding: 120px 0 110px;
    overflow: hidden;
}
.letushelpyouwrap::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 85% 10%, rgba(212,169,74,0.08), transparent 55%),
        radial-gradient(circle at 10% 90%, rgba(212,169,74,0.07), transparent 55%);
    pointer-events: none;
}

.letushelpyouwrap .container { max-width: 1100px; position: relative; }

.letushelpyouwrap h2 {
    font-size: clamp(2rem, 4.4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.08;
    color: var(--accent-color-first);
    margin: 0 auto 22px;
    font-family: var(--heading-font);
    max-width: 22ch;
}

.letushelpyouwrap > .container > .row > .col-sm-12 > p {
    font-family: var(--font-primary);
    font-size: var(--font-body-lg);
    font-weight: 300;
    line-height: 1.75;
    color: rgba(247, 241, 227, 0.75);
    margin: 0 auto 40px;
    max-width: 60ch;
}

.height91 { height: 40px; }

.listbtnstyle {
    padding: 0;
    column-count: 3;
    column-gap: 20px;
    margin: 48px auto 40px;
    max-width: 960px;
}

.listbtnstyle li {
    list-style: none;
    background: transparent;
    padding: 0;
    margin-bottom: 16px;
    text-align: left;
    display: block;
    width: 100%;
    position: relative;
    break-inside: avoid;
    border: 1px solid rgba(212, 169, 74, 0.18);
    border-radius: var(--bordert-radius-sm);
    transition: all .4s ease;
    overflow: hidden;
}
.listbtnstyle li:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -10px rgba(212,169,74,0.3);
}

.listbtnstyle li a {
    font-size: 15px;
    font-family: var(--font-primary);
    color: var(--champagne);
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
    display: block;
    padding: 18px 22px;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
    transition: color .3s ease;
}
.listbtnstyle li:hover a { color: var(--color-secondary); }

.letushelpyouwrap .tw-prose {
    text-align: left;
    color: rgba(247,241,227,0.82);
    font-family: var(--font-primary);
    font-size: var(--font-body-md);
    line-height: 1.85;
    max-width: 68ch;
    margin: 0 auto;
}
.letushelpyouwrap .tw-prose h2,
.letushelpyouwrap .tw-prose h3,
.letushelpyouwrap .tw-prose h4 {
    color: var(--color-primary);
    text-align: left;
    margin-top: 1.8em;
}
.letushelpyouwrap .tw-prose a { color: var(--color-primary); }
.letushelpyouwrap .tw-prose a:hover { color: var(--gold-light); }

/* ==========================================================
   Featured Products
========================================================== */
.featuredproductswrap {
    background: var(--ivory);
    position: relative;
}
.featuredproductswrap::before {
    content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 80%; max-width: 700px; height: 1px;
    background: linear-gradient(to right, transparent, var(--color-primary), transparent);
    opacity: 0.5;
}
.featuredproductswrap .container { max-width: 1180px; }

.featuredproductswrap .section-title {
    color: var(--color-secondary);
    line-height: 1.1;
    font-family: var(--heading-font);
    font-weight: 500;
}

/* ==========================================================
   Operation Hours
========================================================== */
.operationhourswrap {
    padding: 110px 0 100px;
    position: relative;
    background: var(--noir);
    overflow: hidden;
}
.operationhourswrap::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(212,169,74,0.1), transparent 50%);
}

.operationhourswrap h2 {
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent-color-first);
    text-align: center;
    margin-bottom: 8px;
    font-family: var(--heading-font);
    position: relative;
}

.operationhourscol {
    max-width: 760px;
    width: 94%;
    margin: 40px auto 0;
    position: relative;
    z-index: 2;
}

.operationhourscol ul { padding: 0; margin: 0; }

.operationhourscol ul li {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 8px;
    border-top: 1px solid rgba(212, 169, 74, 0.18);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
    font-family: var(--font-primary);
    color: var(--champagne);
    letter-spacing: 0.04em;
    transition: background .3s ease, padding .3s ease;
}
.operationhourscol ul li:hover { background: rgba(212,169,74,0.04); padding-left: 16px; padding-right: 16px; }
.operationhourscol ul li:first-of-type { border-top: 1px solid rgba(212, 169, 74, 0.18); }
.operationhourscol ul li:last-of-type { border-bottom: 1px solid rgba(212, 169, 74, 0.18); }

.operationhourscol .daycol {
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 500;
    color: var(--accent-color-first);
    letter-spacing: 0.01em;
}
.operationhourscol .timecol {
    color: var(--color-primary);
    font-variant-numeric: tabular-nums;
}

/* ==========================================================
   Testimonials
========================================================== */
.testinobualwrap {
    padding: 110px 0 120px;
    text-align: center;
    position: relative;
    background: var(--ivory);
    overflow: hidden;
}
.testinobualwrap::before {
    content: "\201C";
    position: absolute;
    top: 30px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--display-font);
    font-size: 240px;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.14;
    pointer-events: none;
}

.testinobualwrap .carousel-item img {
    margin-bottom: 28px;
    filter: sepia(1) hue-rotate(-8deg) saturate(4) brightness(1.05);
    max-height: 28px;
    width: auto;
}

.testinobualwrap .carousel-caption {
    position: relative;
    right: auto; bottom: auto; left: auto;
    padding: 0;
    color: var(--color-secondary);
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.carousel-caption .line {
    display: block;
    margin: 28px auto;
    width: 80px;
    height: 1px;
    background: var(--color-primary);
}

.testinobualwrap .carousel-control-next,
.testinobualwrap .carousel-control-prev {
    width: 4% !important;
    opacity: 1;
    filter: grayscale(1) sepia(1) hue-rotate(5deg) saturate(3);
}

.carousel-caption h5,
.carousel-caption h5 p {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-family: var(--heading-font);
    font-style: italic;
    font-weight: 400;
    line-height: 1.35;
    color: var(--ink-warm);
}

.carousel-caption p {
    font-size: 14px;
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 1.6;
    color: var(--gold-dark);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

/* ==========================================================
   Static editorial sections (SEO)
========================================================== */
.fof-about {
    position: relative;
    background: linear-gradient(180deg, var(--ivory) 0%, #ede3cc 100%);
    padding: 110px 0;
}
.fof-about .about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.5fr;
    gap: 60px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}
.fof-about .about-eyebrow { color: var(--gold-dark); }
.fof-about h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--color-secondary);
    line-height: 1.05;
    margin-bottom: 24px;
}
.fof-about h2 em { font-style: italic; color: var(--gold-dark); font-family: var(--display-font); font-weight: 400; }
.fof-about p {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.85;
    color: rgba(26, 22, 19, 0.82);
    margin-bottom: 18px;
}
.fof-about .signature {
    margin-top: 28px;
    display: flex; align-items: center; gap: 16px;
    color: var(--gold-dark);
    font-family: var(--display-font);
    font-size: 22px;
}
.fof-about .signature::before {
    content: ""; width: 40px; height: 1px; background: var(--gold-dark);
}

.fof-about .about-visual {
    position: relative;
    aspect-ratio: 4/5;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    background: linear-gradient(180deg, #f3e8c8 0%, #ead8a8 55%, #d4a94a 100%);
    border: 1px solid rgba(156, 122, 44, 0.5);
    box-shadow:
        0 30px 60px -20px rgba(10, 9, 8, 0.35),
        0 0 0 1px rgba(212, 169, 74, 0.25),
        0 0 0 8px var(--ivory),
        0 0 0 9px rgba(212, 169, 74, 0.35);
}
.fof-about .about-visual .about-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    padding: 22px;
    transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.fof-about .about-visual:hover .about-img {
    transform: scale(1.03);
}
.fof-about .about-visual::after {
    content: "";
    position: absolute; inset: 14px;
    border: 1px solid rgba(156, 122, 44, 0.5);
    pointer-events: none;
    z-index: 2;
}
.fof-about .about-visual .about-stat {
    position: absolute;
    z-index: 3;
    padding: 10px 14px;
    background: rgba(5,4,4,0.72);
    border: 1px solid rgba(212,169,74,0.3);
    color: var(--champagne);
    font-family: var(--font-primary);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}
.fof-about .about-visual .about-stat strong {
    display: block;
    font-family: var(--heading-font);
    color: var(--color-primary);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
    margin-bottom: 2px;
    line-height: 1;
}
.fof-about .about-visual .stat-1 { top: 16px; left: 16px; }
.fof-about .about-visual .stat-2 { bottom: 16px; right: 16px; }

/* Service Area map band */
.fof-area {
    background: var(--color-secondary);
    color: var(--champagne);
    padding: 90px 0;
    text-align: center;
    border-top: 1px solid rgba(212,169,74,0.15);
    border-bottom: 1px solid rgba(212,169,74,0.15);
    position: relative;
    overflow: hidden;
}
.fof-area::before,
.fof-area::after {
    content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,169,74,0.1), transparent 70%);
    filter: blur(20px);
}
.fof-area::before { top: -140px; left: -140px; }
.fof-area::after  { bottom: -140px; right: -140px; }

.fof-area .container { position: relative; max-width: 1180px; }
.fof-area h2 { color: var(--accent-color-first); font-size: clamp(1.75rem, 3.6vw, 2.75rem); margin-bottom: 30px; }
.fof-area .areas {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 0;
    max-width: 980px; margin: 40px auto 0;
    border-top: 1px solid rgba(212, 169, 74, 0.45);
    border-bottom: 1px solid rgba(212, 169, 74, 0.45);
    background: linear-gradient(180deg, rgba(212,169,74,0.05), rgba(212,169,74,0.02));
}
.fof-area .areas span {
    flex: 1 1 220px;
    padding: 32px 16px;
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 500;
    color: var(--accent-color-first);
    position: relative;
    letter-spacing: 0.005em;
    transition: background .4s ease;
}
.fof-area .areas span:hover { background: rgba(212, 169, 74, 0.07); }
.fof-area .areas span + span::before {
    content: ""; position: absolute; left: 0; top: 20%; bottom: 20%;
    width: 1px; background: rgba(212, 169, 74, 0.35);
}
.fof-area .areas span em {
    display: block;
    font-family: var(--font-primary);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--color-primary);
    font-style: normal;
    margin-top: 8px;
    font-weight: 500;
}

/* ==========================================================
   Footer
========================================================== */
footer {
    background: var(--noir) !important;
    color: var(--champagne);
    position: relative;
    padding: 90px 0 50px !important;
    border-top: 1px solid rgba(212,169,74,0.2);
}
footer::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--gold-gradient);
    opacity: 0.7;
}
.footerlogo img { filter: none; }
.footernav {
    border-color: rgba(212, 169, 74, 0.25) !important;
}
.footernav ul li a {
    color: var(--champagne);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-family: var(--font-primary);
    text-decoration: none;
    transition: color .3s ease;
}
.footernav ul li a:hover { color: var(--color-primary); }

.copyright {
    color: rgba(234, 216, 168, 0.55);
    font-size: var(--font-body-xs);
    font-family: var(--font-primary);
    letter-spacing: 0.06em;
    margin-top: 24px;
}
.copyright a {
    color: var(--color-primary);
    text-decoration: none;
}
.copyright a:hover { color: var(--gold-light); }

/* ==========================================================
   Subpage (non-home) layout
========================================================== */
.subprspage {
    padding: 60px 0;
    color: var(--ink-warm);
    font-family: var(--font-primary);
}
.subprspage h1, .subprspage h2, .subprspage h3 {
    color: var(--color-secondary);
    font-family: var(--heading-font);
}
