/* ============================================================
   ETHICA V5 — "Editorial Sage"
   Forest Green (#1C3A2A) + Terracotta (#C4714A) + Cream (#FAF8F3)
   Font: Fraunces (Slab Serif Headlines) + Plus Jakarta Sans (Body)
   Layout: Magazine/Editorial, Split-sections, Oversized type
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,700;0,9..144,900;1,9..144,700;1,9..144,900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --v5-forest:   #1E2245; /* Deep Indigo from Logo */
    --v5-sage:     #393D5C; /* Slate Navy */
    --v5-sage-lt:  #A0A1B1; /* Light slate */
    --v5-terra:    #D29D4F; /* Rich Ethnic Gold */
    --v5-terra-lt: #FFECC4;
    --v5-cream:    #F5EBE1; /* Sandy Ethnic Cream */
    --v5-sand:     #EAE2D5;
    --v5-dark:     #0D1022; /* Very dark midnight */
    --v5-text:     #1E2245;
    --v5-muted:    #5E687A;
    --v5-border:   rgba(210, 157, 79, 0.4);
    --v5-white:    #FFFFFF;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--v5-cream);
    color: var(--v5-text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ---- Art Deco Global Outer Frame ---- */
body::before {
    content: ''; position: fixed;
    top: 15px; bottom: 15px; left: 15px; right: 15px;
    border: 3px solid var(--v5-terra); z-index: 9998; pointer-events: none; opacity: 0.8;
    width: calc(100vw - 30px);
    border-radius: 30px;
    
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 100'%3E%3Cg fill='none' stroke='%23D29D4F' opacity='0.5'%3E%3Cpath stroke-width='2' d='M0 0 A 50 50 0 0 1 0 100' /%3E%3Cpath stroke-width='1.5' d='M0 20 A 30 30 0 0 1 0 80' /%3E%3Cpath stroke-width='1' d='M0 40 A 10 10 0 0 1 0 60' /%3E%3Cpath stroke-width='0.5' d='M0 50 L 50 50 M0 50 L 35 85 M0 50 L 35 15' /%3E%3C/g%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 100'%3E%3Cg fill='none' stroke='%23D29D4F' opacity='0.5'%3E%3Cpath stroke-width='2' d='M50 0 A 50 50 0 0 0 50 100' /%3E%3Cpath stroke-width='1.5' d='M50 20 A 30 30 0 0 0 50 80' /%3E%3Cpath stroke-width='1' d='M50 40 A 10 10 0 0 0 50 60' /%3E%3Cpath stroke-width='0.5' d='M50 50 L 0 50 M50 50 L 15 85 M50 50 L 15 15' /%3E%3C/g%3E%3C/svg%3E");
    background-position: left center, right center;
    background-repeat: repeat-y, repeat-y;
    background-size: 25px 50px, 25px 50px;
    
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
}
body::after {
    content: ''; position: fixed;
    top: 24px; bottom: 24px; left: 24px; right: 24px;
    border: 1px solid var(--v5-terra); z-index: 9998; pointer-events: none; opacity: 0.5;
    width: calc(100vw - 48px);
    border-radius: 20px;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    line-height: 1.1;
    color: var(--v5-forest);
}
a { text-decoration: none; color: inherit; }

/* ---- Utilities ---- */
.text-forest  { color: var(--v5-forest)  !important; }
.text-terra   { color: var(--v5-terra)   !important; }
.text-sage    { color: var(--v5-sage)    !important; }
.text-cream   { color: var(--v5-cream)   !important; }
.text-muted-v5{ color: var(--v5-muted)   !important; }
.bg-forest    { background: var(--v5-forest)  !important; }
.bg-terra     { background: var(--v5-terra)   !important; }
.bg-sage-lt   { background: var(--v5-sage-lt) !important; }
.bg-sand      { background: var(--v5-sand)    !important; }
.bg-cream     { background: var(--v5-cream)   !important; }
.italic-serif { font-family:'Fraunces',serif; font-style:italic; }

/* ---- Navbar ---- */
.v5-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    padding: 0;
    padding-top: 18px;
    background: rgba(30, 34, 69, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(210, 157, 79, 0.2);
    transition: all 0.4s var(--ease);
}
.v5-nav.scrolled {
    background: var(--v5-forest);
    box-shadow: 0 2px 40px rgba(13, 16, 34, 0.8);
    border-bottom: 1px solid var(--v5-terra);
}
.v5-nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 15px 80px;
}
.v5-brand {
    display: flex; align-items: center; gap: 12px;
    color: var(--v5-cream);
    font-family: 'Fraunces', serif;
    font-weight: 900; font-size: 1.3rem; letter-spacing: 0.05em;
}
.v5-brand-leaf {
    width: 38px; height: 38px;
    background: var(--v5-terra);
    border-radius: 50% 50% 50% 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--v5-cream); font-weight: 900;
    font-family: 'Fraunces', serif;
}
.v5-nav-links { display: flex; align-items: center; gap: 36px; }
.v5-nav-link {
    color: rgba(250,248,243,.65);
    font-size: .8rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    position: relative; padding: 4px 0;
    transition: color .3s var(--ease);
}
.v5-nav-link:hover { color: var(--v5-cream); }
.v5-nav-link.active { color: var(--v5-terra); }
.v5-nav-cta {
    background: var(--v5-terra); color: var(--v5-cream);
    padding: 10px 24px; border-radius: 2px;
    font-size: .75rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; transition: all .3s var(--ease);
}
.v5-nav-cta:hover { background: #B0603B; color: var(--v5-cream); transform: translateY(-1px); }

/* Mobile nav */
.v5-hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 8px;
    background: transparent; border: none; outline: none;
    position: relative; z-index: 1050;
}
.v5-hamburger span {
    display: block; width: 28px; height: 3px;
    background: var(--v5-terra); transition: all .3s;
    border-radius: 2px; pointer-events: none;
}
@media(max-width:768px){ .v5-hamburger { display: flex; } .v5-nav-links { display: none; } }

/* ---- Hero ---- */
.v5-hero {
    background: var(--v5-forest);
    min-height: 100vh;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}
.v5-hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 140px 64px 80px;
    position: relative; z-index: 1;
}
.v5-hero-right {
    background: url('../img/hero_bg.jpg') center/cover;
    position: relative;
}
.v5-hero-right::after {
    content: ''; position: absolute;
    top: 24px; bottom: 24px; left: 24px; right: 24px;
    border: 2px solid var(--v5-terra); z-index: 2; pointer-events: none; opacity: 0.8;
    border-radius: 20px;
}
.v5-hero-right::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, var(--v5-forest) 0%, transparent 40%);
    z-index: 1;
}
.v5-hero-bg-text {
    position: absolute; bottom: -20px; left: 0;
    font-family: 'Fraunces', serif; font-weight: 900;
    font-size: clamp(100px, 18vw, 240px);
    color: rgba(255,255,255,.03); line-height: 1;
    pointer-events: none; letter-spacing: -.05em; white-space: nowrap;
}
.v5-tag {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--v5-terra); font-size: .7rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase;
    margin-bottom: 28px;
    border-left: 3px solid var(--v5-terra); padding-left: 12px;
}
.v5-hero-title {
    font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 900;
    color: var(--v5-cream); line-height: 1.0; letter-spacing: -.03em;
    margin-bottom: 28px;
}
.v5-hero-title em { font-style: italic; color: var(--v5-terra); }
.v5-hero-sub {
    color: rgba(250,248,243,.55); font-size: 1rem;
    max-width: 440px; line-height: 1.9; margin-bottom: 48px;
}
.v5-hero-stat-row { display: flex; gap: 40px; margin-bottom: 48px; }
.v5-hero-stat-num {
    font-family: 'Fraunces', serif; font-size: 2.2rem;
    font-weight: 900; color: var(--v5-terra); display: block;
}
.v5-hero-stat-lbl {
    font-size: .7rem; color: rgba(250,248,243,.4);
    text-transform: uppercase; letter-spacing: .1em;
}
.v5-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- Buttons ---- */
.btn-v5 {
    display: inline-block; padding: 16px 36px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .8rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; transition: all .3s var(--ease);
    border-radius: 0;
    border: 1px solid var(--v5-terra);
    position: relative;
    background: transparent;
}
.btn-v5::before {
    content: ''; position: absolute; top: 4px; bottom: 4px; left: 4px; right: 4px;
    border: 1px solid var(--v5-terra); opacity: 0.5; pointer-events: none; transition: all .3s var(--ease);
}
.btn-v5-terra { background: var(--v5-terra); color: var(--v5-dark); border-color: var(--v5-terra); font-weight: 800; }
.btn-v5-terra::before { border-color: rgba(0,0,0,0.2); }
.btn-v5-terra:hover { background: transparent; color: var(--v5-terra); transform: translateY(-2px); box-shadow: none; }
.btn-v5-terra:hover::before { border-color: var(--v5-terra); opacity: 1; }
.btn-v5-ghost { background: transparent; color: var(--v5-cream); border-color: rgba(250,248,243,.4); }
.btn-v5-ghost::before { border-color: rgba(250,248,243,.2); }
.btn-v5-ghost:hover { border-color: var(--v5-terra); color: var(--v5-dark); background: var(--v5-terra); }
.btn-v5-ghost:hover::before { border-color: rgba(0,0,0,0.2); opacity: 1; }
.btn-v5-forest { background: var(--v5-forest); color: var(--v5-cream); border-color: var(--v5-terra); }
.btn-v5-forest::before { border-color: rgba(210, 157, 79, 0.4); }
.btn-v5-forest:hover { background: var(--v5-terra); color: var(--v5-dark); border-color: var(--v5-terra); }
.btn-v5-forest:hover::before { border-color: rgba(0,0,0,0.2); }

/* ---- Section Labels ---- */
.v5-eyebrow {
    font-size: .65rem; font-weight: 700; letter-spacing: .22em;
    text-transform: uppercase; color: var(--v5-terra);
    display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.v5-eyebrow::after { content:''; flex:1; height:1px; background:var(--v5-terra); opacity:.3; max-width:48px; }

/* ---- Services Marquee Strip ---- */
.v5-marquee-strip {
    background: var(--v5-terra); padding: 14px 0; overflow: hidden;
    white-space: nowrap;
}
.v5-marquee-inner {
    display: inline-flex; gap: 0;
    animation: marquee 80s linear infinite;
}
.v5-marquee-item {
    display: inline-flex; align-items: center; gap: 24px;
    padding: 0 32px; font-size: .75rem; font-weight: 700;
    color: var(--v5-cream); letter-spacing: .15em; text-transform: uppercase;
}
.v5-marquee-dot { width: 5px; height: 5px; background: rgba(250,248,243,.4); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Service Cards (Solid Grid Layout) ---- */
.v5-service-btn-box {
    display: flex; align-items: center; justify-content: space-between;
    background-color: var(--v5-sage);
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0L40 20L20 40L0 20Z' fill='rgba(210,157,79,0.03)'/%3E%3C/svg%3E");
    background-size: 20px 20px;
    border: 1px solid rgba(210,157,79,0.15);
    padding: 22px 28px;
    color: var(--v5-cream);
    text-decoration: none;
    transition: all 0.4s var(--ease);
    border-radius: 0;
    position: relative;
    overflow: hidden;
}
.v5-service-btn-box::before {
    content:''; position: absolute; inset: 4px;
    border: 1px solid rgba(210,157,79,0.25); pointer-events: none;
    transition: all 0.4s var(--ease);
}
.v5-service-btn-box:hover {
    background-color: var(--v5-forest);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}
.v5-service-btn-box:hover::before {
    border-color: var(--v5-terra);
}
.v5-service-btn-box:hover .v5-svc-title,
.v5-service-btn-box:hover .v5-svc-icon {
    color: var(--v5-terra);
}
.v5-svc-title {
    font-size: .95rem; font-weight: 600; letter-spacing: .02em; transition: color 0.3s;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative; z-index: 2;
}
.v5-svc-icon {
    font-size: 1rem; opacity: 0.9; transition: transform 0.3s, color 0.3s;
    position: relative; z-index: 2;
}
.v5-service-btn-box:hover .v5-svc-icon {
    transform: translateX(4px);
}
.v5-svc-all {
    background: var(--v5-terra);
    color: var(--v5-dark);
}
.v5-svc-all::before {
    border-color: rgba(0,0,0,0.1);
}
.v5-svc-all:hover {
    background: transparent;
    border-color: var(--v5-terra);
}
.v5-svc-all:hover::before {
    border-color: var(--v5-terra);
}
.v5-svc-all:hover .v5-svc-title,
.v5-svc-all:hover .v5-svc-icon {
    color: var(--v5-terra);
}

/* ---- About Split Section ---- */
.v5-split {
    display: grid; grid-template-columns: 1fr 1fr; min-height: 500px;
}
.v5-split-img { background-size: cover; background-position: center; position: relative; }
.v5-split-img::after {
    content: ''; position: absolute;
    top: 24px; bottom: 24px; left: 24px; right: 24px;
    border: 2px solid var(--v5-terra); z-index: 2; pointer-events: none; opacity: 0.8;
    border-radius: 20px;
}
.v5-split-content { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.v5-split-content h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 24px; }

/* ---- Pullquote ---- */
.v5-pullquote {
    background: var(--v5-forest); padding: 80px 64px; position: relative; overflow: hidden;
    border-top: 2px solid var(--v5-terra); border-bottom: 2px solid var(--v5-terra);
}
.v5-pullquote::after {
    content: ''; position: absolute;
    top: 8px; bottom: 8px; left: 8px; right: 8px;
    border: 2px solid var(--v5-terra); opacity: 0.3; pointer-events: none;
    border-radius: 20px;
}
.v5-pullquote::before {
    content: '\201C';
    position: absolute; top: -40px; left: 40px;
    font-family: 'Fraunces', serif; font-size: 280px; font-weight: 900;
    color: rgba(255,255,255,.04); line-height: 1;
}
.v5-pullquote blockquote {
    font-family: 'Fraunces', serif; font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 700; font-style: italic; color: var(--v5-cream);
    line-height: 1.4; max-width: 820px; margin: 0 auto;
    text-align: center; position: relative; z-index: 1;
}
.v5-pullquote cite {
    display: block; margin-top: 24px; font-style: normal;
    font-size: .8rem; font-weight: 600; letter-spacing: .15em;
    text-transform: uppercase; color: var(--v5-terra);
    text-align: center;
}

/* ---- Values ---- */
.v5-value-item { padding: 40px 0; border-bottom: 1px solid var(--v5-border); display: flex; gap: 40px; align-items: flex-start; }
.v5-value-item:first-child { border-top: 1px solid var(--v5-border); }
.v5-value-num { font-family:'Fraunces',serif; font-size:1.2rem; color:var(--v5-terra); font-weight:900; min-width:36px; padding-top:4px; }
.v5-value-body h4 { font-size:1.1rem; margin-bottom:8px; color:var(--v5-forest); }
.v5-value-body p { font-size:.9rem; color:var(--v5-muted); line-height:1.8; }

/* ---- CTA Section ---- */
.v5-cta { background: var(--v5-terra); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.v5-cta::before {
    content: 'ETHİCA'; position: absolute; bottom: -60px; right: -40px;
    font-family:'Fraunces',serif; font-weight:900; font-size:220px;
    color: rgba(0,0,0,.06); line-height:1; pointer-events:none; letter-spacing:-.05em;
}
.v5-cta h2 { font-size:clamp(2rem,4vw,3.5rem); color:var(--v5-cream); margin-bottom:20px; }
.v5-cta p { color:rgba(250,248,243,.7); font-size:1.05rem; max-width:520px; margin:0 auto 40px; line-height:1.8; }

/* ---- Contact ---- */
.v5-contact-split { display:grid; grid-template-columns:1fr 1fr; }
.v5-contact-info { background:var(--v5-forest); padding:80px 64px; color:var(--v5-cream); }
.v5-contact-form-side { padding:80px 64px; background:var(--v5-cream); }
.v5-info-item { display:flex; gap:16px; margin-bottom:32px; }
.v5-info-icon { width:44px;height:44px;background:rgba(196,113,74,.15);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--v5-terra);flex-shrink:0; }
.v5-info-label { font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.15em;color:rgba(250,248,243,.4);margin-bottom:4px; }
.v5-info-val { font-size:.95rem;font-weight:600;color:var(--v5-cream); }

/* ---- Forms V5 ---- */
.v5-field-group { margin-bottom: 24px; }
.v5-label {
    display:block; font-size:.65rem; font-weight:700;
    text-transform:uppercase; letter-spacing:.15em;
    color:var(--v5-forest); margin-bottom:8px;
}
.v5-input {
    width:100%; border:none; border-bottom:2px solid var(--v5-border);
    background:transparent; padding:14px 0;
    font-family:'Plus Jakarta Sans',sans-serif; font-size:1rem;
    color:var(--v5-text); outline:none; transition:border-color .25s;
}
.v5-input:focus { border-color:var(--v5-terra); }
.v5-input::placeholder { color:#B0A899; }
.v5-select { appearance:none; cursor:pointer; }

/* ---- Inner Page Header ---- */
.v5-page-header { background:var(--v5-forest); padding:130px 0 70px; position:relative; overflow:hidden; text-align:center; }
.v5-page-header::after {
    content: attr(data-title); position:absolute; right:-20px; bottom:-60px;
    font-family:'Fraunces',serif; font-weight:900;
    font-size:clamp(100px,15vw,200px); color:rgba(255,255,255,.04);
    line-height:1; letter-spacing:-.05em; pointer-events:none;
}
.v5-page-header h1 { font-size:clamp(1.8rem,5vw,3.5rem); color:var(--v5-cream); font-weight:900; letter-spacing:0; line-height: 1.4 !important; margin-bottom: 15px; word-break: break-word; }
.v5-page-header .v5-eyebrow { justify-content: center; }
.v5-breadcrumb { color:rgba(250,248,243,.4); font-size:.8rem; margin-top:12px; }
.v5-breadcrumb a:hover { color:var(--v5-terra); }

/* ---- Footer ---- */
.v5-footer { 
    background-color: var(--v5-dark); 
    padding: 72px 0 0; 
    position: relative; 
}
.v5-footer::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23D29D4F' stroke-width='1.5' opacity='0.08'%3E%3Cpath d='M0 100a50 50 0 0 1 100 0M15 100a35 35 0 0 1 70 0M30 100a20 20 0 0 1 40 0'/%3E%3Cpath d='M50 100v-50M50 100L15 65M50 100L85 65M50 100L0 85M50 100L100 85'/%3E%3Cpath d='M50 50a50 50 0 0 1 100 0M65 50a35 35 0 0 1 70 0M80 50a20 20 0 0 1 40 0'/%3E%3Cpath d='M100 50V0M100 50L65 15M100 50L135 15M100 50L50 35M100 50L150 35'/%3E%3Cpath d='M-50 50a50 50 0 0 1 100 0M-35 50a35 35 0 0 1 70 0M-20 50a20 20 0 0 1 40 0'/%3E%3Cpath d='M0 50V0M0 50L-35 15M0 50L35 15M0 50L-50 35M0 50L50 35'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 80px 80px;
}
.v5-footer > div { position: relative; z-index: 2; }
.v5-footer-logo { font-family:'Fraunces',serif; font-weight:900; font-size:1.3rem; color:var(--v5-cream); display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.v5-footer h6 { font-family:'Plus Jakarta Sans',sans-serif; font-size:.65rem; font-weight:700; text-transform:uppercase; letter-spacing:.2em; color:var(--v5-terra); margin-bottom:20px; }
.v5-footer-link { display:block; color:rgba(250,248,243,.8); font-size:.875rem; margin-bottom:12px; transition:color .2s; font-weight:500; }
.v5-footer-link:hover { color:var(--v5-terra); }
.v5-footer-bottom { border-top:1px solid rgba(255,255,255,.06); padding:24px 0; margin-top:56px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; font-size:.8rem; color:rgba(250,248,243,.6); }
.v5-social { width:36px;height:36px;background:rgba(255,255,255,.05);border-radius:4px;display:flex;align-items:center;justify-content:center;color:rgba(250,248,243,.8);transition:all .2s; }
.v5-social:hover { background:var(--v5-terra); color:var(--v5-cream); }

/* ---- Scroll Reveal ---- */
.v5-reveal { opacity:0; transform:translateY(28px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.v5-reveal.visible { opacity:1; transform:none; }
.v5-reveal-left { opacity:0; transform:translateX(-28px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.v5-reveal-left.visible { opacity:1; transform:none; }

/* ---- Responsive ---- */
@media(max-width:992px){
    body::before, body::after { display: none; }
    .v5-nav { padding-top: 0; }
    .v5-hero { grid-template-columns:1fr; min-height:auto; }
    .v5-hero-right { display:none; }
    .v5-hero-left { padding:120px 24px 60px; }
    .v5-split { grid-template-columns:1fr; }
    .v5-split-img { height:320px; }
    .v5-split-content { padding:48px 24px; }
    .v5-service-row { grid-template-columns:1fr; }
    .v5-service-num-col { border-right:none; border-bottom:1px solid var(--v5-border); padding:32px 24px; }
    .v5-service-content-col { padding:32px 24px; }
    .v5-pullquote { padding:60px 24px; }
    .v5-contact-split { grid-template-columns:1fr; }
    .v5-contact-info,.v5-contact-form-side { padding:48px 24px; }
    .v5-nav-inner { padding:20px 24px; }
}

/* ---- Ethnic Origin Specific Patterns & Enhancements ---- */

/* Art Deco Scallop/Fan Pattern (Gatsby Style geometric) */
.v5-pattern-fan {
    background-color: var(--v5-forest); /* Deep Indigo */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23D29D4F' opacity='0.2'%3E%3Cpath stroke-width='1' d='M-50 50 A 50 50 0 0 1 50 50' /%3E%3Cpath stroke-width='1.5' d='M-35 50 A 35 35 0 0 1 35 50' /%3E%3Cpath stroke-width='1' d='M-20 50 A 20 20 0 0 1 20 50' /%3E%3Cpath stroke-width='0.5' d='M0 50 L0 0 M0 50 L35 15 M0 50 L45 35' /%3E%3Cpath stroke-width='1' d='M50 50 A 50 50 0 0 1 150 50' /%3E%3Cpath stroke-width='1.5' d='M65 50 A 35 35 0 0 1 135 50' /%3E%3Cpath stroke-width='1' d='M80 50 A 20 20 0 0 1 120 50' /%3E%3Cpath stroke-width='0.5' d='M100 50 L100 0 M100 50 L65 15 M100 50 L55 35' /%3E%3Cpath stroke-width='1' d='M0 100 A 50 50 0 0 1 100 100' /%3E%3Cpath stroke-width='1.5' d='M15 100 A 35 35 0 0 1 85 100' /%3E%3Cpath stroke-width='1' d='M30 100 A 20 20 0 0 1 70 100' /%3E%3Cpath stroke-width='0.5' d='M50 100 L50 50 M50 100 L15 65 M50 100 L85 65 M50 100 L5 85 M50 100 L95 85' /%3E%3C/g%3E%3C/svg%3E");
    background-size: 100px 100px;
    background-position: center center;
}

/* Interlocking Hexagon & Star Pattern (Ethnic/Seljuk transition) -> Changed to Fan variant */
.v5-pattern-sunburst {
    background-color: var(--v5-dark);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23D29D4F' opacity='0.15'%3E%3Cpath stroke-width='1' d='M-50 50 A 50 50 0 0 1 50 50' /%3E%3Cpath stroke-width='1.5' d='M-35 50 A 35 35 0 0 1 35 50' /%3E%3Cpath stroke-width='1' d='M-20 50 A 20 20 0 0 1 20 50' /%3E%3Cpath stroke-width='0.5' d='M0 50 L0 0 M0 50 L35 15 M0 50 L45 35' /%3E%3Cpath stroke-width='1' d='M50 50 A 50 50 0 0 1 150 50' /%3E%3Cpath stroke-width='1.5' d='M65 50 A 35 35 0 0 1 135 50' /%3E%3Cpath stroke-width='1' d='M80 50 A 20 20 0 0 1 120 50' /%3E%3Cpath stroke-width='0.5' d='M100 50 L100 0 M100 50 L65 15 M100 50 L55 35' /%3E%3Cpath stroke-width='1' d='M0 100 A 50 50 0 0 1 100 100' /%3E%3Cpath stroke-width='1.5' d='M15 100 A 35 35 0 0 1 85 100' /%3E%3Cpath stroke-width='1' d='M30 100 A 20 20 0 0 1 70 100' /%3E%3Cpath stroke-width='0.5' d='M50 100 L50 50 M50 100 L15 65 M50 100 L85 65 M50 100 L5 85 M50 100 L95 85' /%3E%3C/g%3E%3C/svg%3E");
    background-size: 140px 140px;
}

/* Moorish/Arabesque Arch Tile Pattern -> Changed to Fan variant */
.v5-pattern-arch {
    background-color: var(--v5-forest);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23D29D4F' opacity='0.25'%3E%3Cpath stroke-width='1' d='M-50 50 A 50 50 0 0 1 50 50' /%3E%3Cpath stroke-width='1.5' d='M-35 50 A 35 35 0 0 1 35 50' /%3E%3Cpath stroke-width='1' d='M-20 50 A 20 20 0 0 1 20 50' /%3E%3Cpath stroke-width='0.5' d='M0 50 L0 0 M0 50 L35 15 M0 50 L45 35' /%3E%3Cpath stroke-width='1' d='M50 50 A 50 50 0 0 1 150 50' /%3E%3Cpath stroke-width='1.5' d='M65 50 A 35 35 0 0 1 135 50' /%3E%3Cpath stroke-width='1' d='M80 50 A 20 20 0 0 1 120 50' /%3E%3Cpath stroke-width='0.5' d='M100 50 L100 0 M100 50 L65 15 M100 50 L55 35' /%3E%3Cpath stroke-width='1' d='M0 100 A 50 50 0 0 1 100 100' /%3E%3Cpath stroke-width='1.5' d='M15 100 A 35 35 0 0 1 85 100' /%3E%3Cpath stroke-width='1' d='M30 100 A 20 20 0 0 1 70 100' /%3E%3Cpath stroke-width='0.5' d='M50 100 L50 50 M50 100 L15 65 M50 100 L85 65 M50 100 L5 85 M50 100 L95 85' /%3E%3C/g%3E%3C/svg%3E");
    background-size: 120px 120px;
    background-position: center top;
}

/* Elegant Corner Decorations applied directly to parent */
.v5-deco-corners-wrap {
    position: absolute; inset: 12px; pointer-events: none; z-index: 10;
    border: 2px solid rgba(210, 157, 79, 0.7);
    border-radius: 24px;
}
.v5-deco-corners-wrap::before,
.v5-deco-corners-wrap::after {
    content: ''; position: absolute;
    width: 60px; height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg stroke='%23D29D4F' fill='none' opacity='0.9'%3E%3Cpath stroke-width='3' d='M0 25 A 25 25 0 0 1 25 0' /%3E%3Cpath stroke-width='2' d='M0 50 A 50 50 0 0 1 50 0' /%3E%3Cpath stroke-width='1.5' d='M0 75 A 75 75 0 0 1 75 0' /%3E%3Cpath stroke-width='1' d='M0 100 A 100 100 0 0 1 100 0' /%3E%3Cpath stroke-width='1' d='M0 0 L 70 70 M0 0 L 92 38 M0 0 L 38 92' /%3E%3C/g%3E%3C/svg%3E");
    background-size: contain; background-repeat: no-repeat;
}
.v5-deco-corners-wrap::before { top: 0; left: 0; }
.v5-deco-corners-wrap::after { bottom: 0; right: 0; transform: rotate(180deg); }

.v5-deco-corners-alt {
    position: absolute; inset: 12px; pointer-events: none; z-index: 10;
}
.v5-deco-corners-alt::before {
    content: ''; position: absolute; top: 0; right: 0;
    width: 60px; height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg stroke='%23D29D4F' fill='none' opacity='0.9'%3E%3Cpath stroke-width='3' d='M0 25 A 25 25 0 0 1 25 0' /%3E%3Cpath stroke-width='2' d='M0 50 A 50 50 0 0 1 50 0' /%3E%3Cpath stroke-width='1.5' d='M0 75 A 75 75 0 0 1 75 0' /%3E%3Cpath stroke-width='1' d='M0 100 A 100 100 0 0 1 100 0' /%3E%3Cpath stroke-width='1' d='M0 0 L 70 70 M0 0 L 92 38 M0 0 L 38 92' /%3E%3C/g%3E%3C/svg%3E");
    background-size: contain; background-repeat: no-repeat;
    transform: rotate(90deg);
}
.v5-deco-corners-alt::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 60px; height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg stroke='%23D29D4F' fill='none' opacity='0.9'%3E%3Cpath stroke-width='3' d='M0 25 A 25 25 0 0 1 25 0' /%3E%3Cpath stroke-width='2' d='M0 50 A 50 50 0 0 1 50 0' /%3E%3Cpath stroke-width='1.5' d='M0 75 A 75 75 0 0 1 75 0' /%3E%3Cpath stroke-width='1' d='M0 100 A 100 100 0 0 1 100 0' /%3E%3Cpath stroke-width='1' d='M0 0 L 70 70 M0 0 L 92 38 M0 0 L 38 92' /%3E%3C/g%3E%3C/svg%3E");
    background-size: contain; background-repeat: no-repeat;
    transform: rotate(-90deg);
}

/* Framed internal block */
.v5-art-deco-frame-inner {
    border: 2px solid var(--v5-terra);
    padding: 40px;
    position: relative;
    background: var(--v5-forest);
    border-radius: 24px;
}
.v5-art-deco-frame-inner::after {
    content:''; position: absolute; top:6px; bottom:6px; left:6px; right:6px;
    border: 1px solid rgba(210, 157, 79, 0.7); pointer-events:none;
    border-radius: 18px;
}

/* Decorative Ethnic Ornamental Divider */
.ethnic-hr {
    border: none;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='30' viewBox='0 0 100 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 15 L25 5 L50 15 L75 5 L100 15 L75 25 L50 15 L25 25 Z' fill='none' stroke='%23D29D4F' stroke-width='1.5' opacity='0.7'/%3E%3Ccircle cx='50' cy='15' r='4' fill='%23D29D4F' opacity='0.8'/%3E%3C/svg%3E");
    background-position: center;
    margin: 40px auto;
    width: 80%;
    max-width: 400px;
}
