/* ===== TOKENS ===== */
:root {
--cream:      #FAF8F4;
--cream2:     #F2EDE5;
--terra:      #C4622D;
--terra-dark: #A34E22;
--terra-pale: #F5E8DF;
--espresso:   #2C1A10;
--bark:       #6B4C3B;
--stone:      #9B8E84;
--ink:        #3D2B1F;
--line:       #E4D9CE;
--white:      #FFFFFF;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: 'DM Sans', sans-serif;
background: var(--cream);
color: var(--ink);
overflow-x: hidden;
}

/* ===== UTILITY ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.serif { font-family: 'Playfair Display', serif; }
.page { display: none; }
.page.active { display: block; }

/* ===== TOPBAR ===== */
.topbar {
background: var(--espresso);
color: #c9b8ac;
font-size: 0.74rem;
letter-spacing: 0.6px;
padding: 7px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar a { color: var(--terra); text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.tb-sep { margin: 0 12px; opacity: 0.3; }

/* ===== HEADER ===== */
header {
background: var(--white);
border-bottom: 1px solid var(--line);
position: sticky;
top: 0;
z-index: 900;
}
.hdr-inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 14px 0;
gap: 20px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 14px; cursor: pointer; text-decoration: none; }
.logo-mark {
width: 50px; height: 50px;
display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
flex-shrink: 0;
}
.logo-mark span {
border-radius: 2px;
background: var(--terra);
}
.logo-mark span:nth-child(2),
.logo-mark span:nth-child(3) { background: var(--espresso); }
.logo-mark span:nth-child(4) { background: var(--terra-dark); opacity: 0.6; }
.logo-name {
font-family: 'Playfair Display', serif;
font-size: 1.45rem;
font-weight: 900;
color: var(--espresso);
letter-spacing: 0.5px;
line-height: 1;
}
.logo-sub {
font-size: 0.65rem;
color: var(--stone);
letter-spacing: 2px;
text-transform: uppercase;
margin-top: 3px;
}

/* Nav */
nav { display: flex; align-items: center; gap: 2px; }
.nl {
font-size: 0.8rem; font-weight: 500; letter-spacing: 0.3px;
color: var(--bark); padding: 8px 13px; border-radius: 3px;
cursor: pointer; border: none; background: none; white-space: nowrap;
transition: color .2s, background .2s; position: relative;
}
.nl:hover { color: var(--terra); background: var(--terra-pale); }
.nl.active { color: var(--terra); }
.nl.active::after {
content: ''; position: absolute; bottom: 0; left: 13px; right: 13px;
height: 2px; background: var(--terra); border-radius: 1px;
}

/* Dropdown */
.nd { position: relative; }
.nd:hover .dm { opacity: 1; pointer-events: all; transform: translateY(0); }
.dm {
position: absolute; top: 100%; left: 0;
background: var(--white); border: 1px solid var(--line);
border-top: 2px solid var(--terra); min-width: 210px;
padding: 6px 0; border-radius: 0 0 6px 6px;
box-shadow: 0 12px 40px rgba(44,26,16,.1);
opacity: 0; pointer-events: none;
transform: translateY(0); transition: opacity .2s; z-index: 999;
}
.dm::before {
content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px;
}
.di {
display: block; padding: 9px 16px; color: var(--bark);
font-size: 0.8rem; font-weight: 500; cursor: pointer;
border: none; background: none; width: 100%; text-align: left;
transition: all .15s;
}
.di:hover { background: var(--terra-pale); color: var(--terra); padding-left: 22px; }

.hdr-actions { display: flex; gap: 10px; align-items: center; }
.btn {
display: inline-flex; align-items: center; justify-content: center;
font-family: 'DM Sans', sans-serif; font-weight: 600;
font-size: 0.82rem; letter-spacing: 0.5px; cursor: pointer;
border: none; text-decoration: none; transition: all .25s; border-radius: 4px;
}
.btn-terra { background: var(--terra); color: #fff; padding: 10px 24px; }
.btn-terra:hover { background: var(--terra-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,98,45,.35); }
.btn-outline-terra { background: transparent; color: var(--terra); border: 1.5px solid var(--terra); padding: 9px 22px; }
.btn-outline-terra:hover { background: var(--terra); color: #fff; }
.btn-dark { background: var(--espresso); color: #fff; padding: 10px 24px; }
.btn-dark:hover { background: var(--ink); }
.btn-lg { padding: 15px 40px; font-size: 0.9rem; }
.btn-full { width: 100%; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--espresso); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-menu {
display: none; background: var(--white); border-top: 1px solid var(--line);
max-height: 0; overflow: hidden; transition: max-height .35s ease;
}
.mob-menu.open { display: block; max-height: 600px; }
.mnl {
display: block; padding: 13px 24px; color: var(--bark); font-size: 0.88rem;
font-weight: 500; cursor: pointer; border: none; background: none; width: 100%;
text-align: left; border-bottom: 1px solid var(--line); transition: all .2s;
}
.mnl:hover { color: var(--terra); background: var(--terra-pale); }
.mnl.sub { padding-left: 40px; font-size: 0.82rem; color: var(--stone); }
.mob-cta { padding: 16px 24px; background: var(--cream2); }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 14px 0 0; font-size: 0.78rem; color: var(--stone); }
.breadcrumb button { color: var(--stone); background: none; border: none; cursor: pointer; font-size: 0.78rem; }
.breadcrumb button:hover { color: var(--terra); }
.breadcrumb span { margin: 0 8px; }

/* ===== HERO ===== */
.hero {
background: var(--cream);
padding: 80px 0 0;
overflow: hidden;
position: relative;
}
.hero::before {
content: '';
position: absolute;
right: 0; top: 0; bottom: 0;
width: 42%;
background: var(--espresso);
clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
z-index: 0;
}
.hero-inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0;
position: relative;
z-index: 1;
min-height: 560px;
align-items: center;
}
.hero-text { padding: 0 0 80px; }
.hero-label {
display: inline-flex; align-items: center; gap: 8px;
font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase;
color: var(--terra); font-weight: 600; margin-bottom: 20px;
}
.hero-label::before {
content: ''; display: block; width: 32px; height: 2px; background: var(--terra);
}
.hero h1 {
font-family: 'Playfair Display', serif;
font-size: clamp(2.8rem, 5.5vw, 4.2rem);
font-weight: 900;
line-height: 1.08;
color: var(--espresso);
margin-bottom: 22px;
}
.hero h1 em { color: var(--terra); font-style: italic; }
.hero-desc {
font-size: 1rem; color: var(--bark); line-height: 1.75;
font-weight: 300; max-width: 440px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stat-row {
display: flex; gap: 36px; margin-top: 56px; padding-top: 36px;
border-top: 1px solid var(--line); flex-wrap: wrap;
}
.hstat-num {
font-family: 'Playfair Display', serif; font-size: 2.4rem;
font-weight: 900; color: var(--terra); line-height: 1;
}
.hstat-lbl { font-size: 0.72rem; color: var(--stone); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.hero-visual {
display: flex; align-items: center; justify-content: center;
height: 100%; padding: 40px 20px 80px 40px;
position: relative;
}
.hero-tiles-grid {
display: grid; grid-template-columns: repeat(4, 60px); grid-template-rows: repeat(4, 60px);
gap: 6px; transform: rotate(-8deg); opacity: 0.9;
}
.ht {
border-radius: 3px;
animation: tilePulse 3s ease-in-out infinite;
}
.ht:nth-child(odd) { animation-delay: .5s; }
.ht.c1 { background: #c4a882; }
.ht.c2 { background: #a08060; }
.ht.c3 { background: #C4622D; }
.ht.c4 { background: #8a6844; }
.ht.c5 { background: #d4b890; }
.ht.c6 { background: #6a4a28; }
@keyframes tilePulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}

/* ===== RIBBON ===== */
.ribbon {
background: var(--terra);
color: white;
padding: 18px 0;
overflow: hidden;
}
.ribbon-track {
display: flex; gap: 60px; white-space: nowrap;
animation: marquee 18s linear infinite;
}
.ribbon-item {
display: inline-flex; align-items: center; gap: 10px;
font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
}
.ribbon-dot { width: 5px; height: 5px; background: rgba(255,255,255,0.5); border-radius: 50%; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SECTION HEADING ===== */
.sh { margin-bottom: 50px; }
.sh-label {
font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
color: var(--terra); font-weight: 600;
display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.sh-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--terra); }
.sh-title {
font-family: 'Playfair Display', serif;
font-size: clamp(1.8rem, 4vw, 3rem);
font-weight: 900; color: var(--espresso); line-height: 1.15;
}
.sh-title em { font-style: italic; color: var(--terra); }
.sh-sub { font-size: 0.9rem; color: var(--stone); margin-top: 10px; font-weight: 300; }

/* ===== ADVANTAGES ===== */
.adv { padding: 90px 0; background: var(--white); }
.adv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.adv-card {
padding: 32px 28px 28px;
border: 1px solid var(--line);
border-radius: 8px;
position: relative;
transition: all .3s;
}
.adv-card:hover { border-color: var(--terra); box-shadow: 0 12px 40px rgba(196,98,45,.1); transform: translateY(-4px); }
.adv-num {
font-family: 'Playfair Display', serif;
font-size: 4rem; font-weight: 900;
color: var(--terra-pale); position: absolute;
top: 16px; right: 20px; line-height: 1;
}
.adv-icon { font-size: 2rem; margin-bottom: 14px; }
.adv-title { font-size: 0.95rem; font-weight: 600; color: var(--espresso); margin-bottom: 8px; }
.adv-desc { font-size: 0.82rem; color: var(--stone); line-height: 1.7; }

/* ===== CTA BANNER ===== */
.cta-band {
background: var(--espresso);
padding: 60px 0;
position: relative; overflow: hidden;
}
.cta-band::after {
content: '';
position: absolute; right: -40px; top: -40px;
width: 300px; height: 300px;
border: 60px solid rgba(196,98,45,.15);
border-radius: 50%;
}
.cta-band-inner {
display: flex; align-items: center; justify-content: space-between;
gap: 30px; flex-wrap: wrap; position: relative; z-index: 1;
}
.cta-band-left h2 {
font-family: 'Playfair Display', serif;
font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900;
color: white; margin-bottom: 8px;
}
.cta-band-left p { color: #9a8a80; font-size: 0.88rem; }
.cta-phone {
font-family: 'Playfair Display', serif;
font-size: 2rem; font-weight: 900; color: var(--terra);
text-decoration: none; white-space: nowrap;
}
.cta-phone:hover { color: #e07840; }

/* ===== CATALOG ===== */
.cat-sec { padding: 90px 0; background: var(--cream); }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }
.cat-card {
background: var(--white); border-radius: 8px; overflow: hidden;
border: 1px solid var(--line); transition: all .3s; cursor: pointer;
}
.cat-card:hover { border-color: var(--terra); box-shadow: 0 16px 50px rgba(44,26,16,.1); transform: translateY(-5px); }
.cat-img {
height: 195px; display: flex; align-items: center; justify-content: center;
position: relative; overflow: hidden;
}
.cat-badge {
position: absolute; top: 12px; left: 12px;
background: var(--terra); color: white;
font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px;
text-transform: uppercase; padding: 4px 10px; border-radius: 2px;
}
.cat-body { padding: 22px; }
.cat-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--espresso); margin-bottom: 7px; }
.cat-desc { font-size: 0.8rem; color: var(--stone); line-height: 1.65; margin-bottom: 16px; }
.cat-footer { display: flex; align-items: center; justify-content: space-between; }
.cat-price { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--terra); }
.cat-price small { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; color: var(--stone); font-weight: 400; }

/* Tile CSS art */
.tp-heritage { background: repeating-conic-gradient(#c4a882 0% 25%, #b49070 0% 50%) 0 0 / 22px 22px; }
.tp-brick-r   { background: repeating-linear-gradient(0deg, #c05548 0, #c05548 16px, #a04038 16px, #a04038 18px); background-size: 36px 18px; }
.tp-slate     { background: linear-gradient(135deg, #8a9898 0%, #6a7878 40%, #9aabab 100%); }
.tp-metro     { background: repeating-conic-gradient(#9a9888 0% 25%, #8a8878 0% 50%) 0 0 / 28px 28px; }
.tp-sand      { background: radial-gradient(ellipse at 30% 40%, #ddd0b0 0%, #c8ba98 60%, #b8aa88 100%); }
.tp-border    { background: linear-gradient(135deg, #6a7070 0%, #4a5050 50%, #6a7070 100%); }
.tp-block     { background: repeating-linear-gradient(90deg, #7a8878 0, #7a8878 28px, #6a7868 28px, #6a7868 30px); }
.tp-cobble    { background: radial-gradient(ellipse 60% 40% at 30% 50%, #c8b888 0%, #a89868 100%), radial-gradient(ellipse 60% 40% at 70% 50%, #b8a878 0%, #988858 100%); }

/* ===== PORTFOLIO ===== */
.port-sec { padding: 90px 0; background: var(--cream2); }
.port-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.pf-btn {
padding: 7px 18px; border: 1.5px solid var(--line); border-radius: 30px;
font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px; cursor: pointer;
background: white; color: var(--bark); transition: all .2s;
}
.pf-btn:hover, .pf-btn.active { border-color: var(--terra); background: var(--terra); color: white; }
.port-masonry {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-auto-rows: 200px;
gap: 14px;
}
.port-item {
border-radius: 8px; overflow: hidden; cursor: pointer;
position: relative; transition: all .3s;
}
.port-item.tall { grid-row: span 2; }
.port-item.wide { grid-column: span 2; }
.port-item:hover { box-shadow: 0 16px 50px rgba(44,26,16,.2); }
.port-bg { width: 100%; height: 100%; transition: transform .4s; }
.port-item:hover .port-bg { transform: scale(1.06); }
.port-ov {
position: absolute; inset: 0;
background: linear-gradient(to top, rgba(44,26,16,.85) 0%, rgba(44,26,16,0) 55%);
opacity: 0; transition: opacity .3s;
display: flex; align-items: flex-end; padding: 20px;
}
.port-item:hover .port-ov { opacity: 1; }
.port-ov-txt h4 { color: white; font-weight: 600; font-size: 0.92rem; margin-bottom: 3px; }
.port-ov-txt p { color: #d4b8a8; font-size: 0.76rem; }

/* ===== SERVICES ===== */
.svc-sec { padding: 90px 0; background: var(--white); }
.svc-row {
display: grid; grid-template-columns: 68px 1fr auto;
align-items: center; gap: 24px;
padding: 28px 0; border-bottom: 1px solid var(--line); transition: all .2s;
}
.svc-row:first-child { border-top: 1px solid var(--line); }
.svc-row:hover { padding-left: 16px; }
.svc-row:hover .svc-n { color: var(--terra); }
.svc-n {
font-family: 'Playfair Display', serif; font-size: 2.5rem;
font-weight: 900; color: var(--line); transition: color .2s; line-height: 1;
}
.svc-ttl { font-size: 1rem; font-weight: 600; color: var(--espresso); margin-bottom: 5px; }
.svc-dsc { font-size: 0.82rem; color: var(--stone); line-height: 1.7; }
.svc-ico { font-size: 2.2rem; opacity: 0.35; }

/* ===== PRICES ===== */
.price-sec { padding: 90px 0; background: var(--cream); }
.price-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--line); margin-bottom: 40px; flex-wrap: wrap; }
.ptab {
padding: 11px 22px; font-size: 0.82rem; font-weight: 600; cursor: pointer;
border: none; background: none; color: var(--stone); border-bottom: 2px solid transparent;
margin-bottom: -2px; transition: all .2s;
}
.ptab:hover { color: var(--terra); }
.ptab.active { color: var(--terra); border-bottom-color: var(--terra); }
.ptab-panel { display: none; }
.ptab-panel.active { display: block; }
.price-tbl { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.price-tbl thead tr { background: var(--espresso); }
.price-tbl thead th { padding: 14px 18px; color: #d0c0b8; text-align: left; font-weight: 600; font-size: 0.75rem; letter-spacing: 0.5px; text-transform: uppercase; }
.price-tbl tbody tr { border-bottom: 1px solid var(--line); transition: background .15s; }
.price-tbl tbody tr.row-highlight { background: var(--terra-pale); }
.price-tbl tbody tr.row-highlight .pname { color: var(--terra); }
.price-tbl td { padding: 14px 18px; }
.price-tbl .pval { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--terra); }
.price-tbl .pname { font-weight: 600; color: var(--espresso); }
.price-note {
background: var(--terra-pale); border-left: 3px solid var(--terra);
padding: 16px 20px; font-size: 0.82rem; color: var(--bark);
line-height: 1.7; border-radius: 0 6px 6px 0; margin-top: 28px;
}
#t4 .price-tbl tbody tr:hover { background: var(--terra-pale); }

/* ===== ABOUT ===== */
.about-sec { padding: 90px 0; }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; margin-bottom: 70px; }
.about-txt h2 {
font-family: 'Playfair Display', serif;
font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 900;
color: var(--espresso); line-height: 1.2; margin-bottom: 22px;
}
.about-txt h2 em { font-style: italic; color: var(--terra); }
.about-txt p { font-size: 0.9rem; color: var(--bark); line-height: 1.85; margin-bottom: 14px; font-weight: 300; }
.about-vis {
position: relative; height: 440px;
background: var(--espresso); border-radius: 10px; overflow: hidden;
display: flex; align-items: center; justify-content: center;
}
.about-vis::before {
content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
background: var(--terra);
}
.about-vis-emoji { font-size: 7rem; opacity: 0.4; }
.about-vis-tag {
position: absolute; bottom: 24px; left: 24px; right: 24px;
background: rgba(196,98,45,.9); color: white;
padding: 16px 20px; border-radius: 6px;
font-size: 0.88rem; font-weight: 500;
}
.about-kpi {
display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: 1px; background: var(--line); border: 1px solid var(--line);
border-radius: 8px; overflow: hidden; margin-bottom: 60px;
}
.kpi {
background: var(--white); padding: 36px 24px; text-align: center;
}
.kpi:nth-child(even) { background: var(--espresso); }
.kpi:nth-child(even) .kpi-n { color: var(--terra); }
.kpi:nth-child(even) .kpi-l { color: #7a6a60; }
.kpi-n {
font-family: 'Playfair Display', serif;
font-size: 3rem; font-weight: 900; color: var(--terra); line-height: 1;
}
.kpi-l { font-size: 0.75rem; color: var(--stone); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 8px; }
.vals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.val-card {
padding: 28px; border: 1px solid var(--line); border-radius: 8px; transition: all .3s;
}
.val-card:hover { border-color: var(--terra); transform: translateY(-3px); }
.val-ico { font-size: 2rem; margin-bottom: 14px; }
.val-ttl { font-weight: 700; font-size: 0.95rem; color: var(--espresso); margin-bottom: 7px; }
.val-txt { font-size: 0.82rem; color: var(--stone); line-height: 1.7; }

/* ===== CONTACTS ===== */
.cnt-sec { padding: 90px 0; background: var(--white); }
.cnt-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.cnt-block { padding: 20px 0; border-bottom: 1px solid var(--line); }
.cnt-block:last-child { border-bottom: none; }
.cnt-lbl { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 2px; color: var(--terra); font-weight: 700; margin-bottom: 8px; }
.cnt-val { font-size: 1rem; font-weight: 600; color: var(--espresso); }
.cnt-val a { color: var(--espresso); text-decoration: none; transition: color .2s; }
.cnt-val a:hover { color: var(--terra); }
.cnt-sub { font-size: 0.8rem; color: var(--stone); margin-top: 3px; }
.cnt-requisites { background: var(--cream2); padding: 22px; border-radius: 8px; margin-top: 24px; font-size: 0.82rem; color: var(--bark); line-height: 2; }
.cnt-requisites strong { color: var(--espresso); }

/* Form */
.cnt-form-wrap h2 {
font-family: 'Playfair Display', serif; font-size: 1.9rem;
font-weight: 900; color: var(--espresso); margin-bottom: 6px;
}
.cnt-form-wrap > p { font-size: 0.85rem; color: var(--stone); margin-bottom: 28px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--espresso); margin-bottom: 8px; }
.fg input, .fg textarea, .fg select {
width: 100%; padding: 12px 15px;
border: 1.5px solid var(--line); border-radius: 5px;
font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
background: var(--cream); color: var(--ink);
transition: border-color .2s; outline: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--terra); background: var(--white); }
.fg textarea { min-height: 110px; resize: vertical; }

/* Submit states */
.form-state { display: none; padding: 14px 18px; border-radius: 6px; font-size: 0.85rem; margin-top: 14px; }
.state-ok { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.state-err { background: #fdecea; color: #c62828; border: 1px solid #ef9a9a; }
.state-loading { background: var(--cream2); color: var(--bark); border: 1px solid var(--line); }

/* ===== MAP ===== */
.map-ph {
background: var(--cream2);
height: 300px; border-radius: 10px; margin-top: 50px;
display: flex; align-items: center; justify-content: center;
border: 1px solid var(--line); font-size: 0.88rem; color: var(--stone);
flex-direction: column; gap: 10px;
}
.map-ph span { font-size: 2.5rem; }

/* ===== QUICK ORDER MODAL ===== */
.mo {
position: fixed; inset: 0; background: rgba(44,26,16,.65);
backdrop-filter: blur(4px); z-index: 9999;
display: none; align-items: center; justify-content: center; padding: 20px;
}
.mo.open { display: flex; }
.mo-box {
background: var(--white); border-radius: 10px; padding: 44px;
max-width: 460px; width: 100%; position: relative;
animation: moIn .3s ease;
}
@keyframes moIn {
from { opacity: 0; transform: translateY(20px) scale(0.97); }
to   { opacity: 1; transform: translateY(0) scale(1); }
}
.mo-close {
position: absolute; top: 16px; right: 16px; width: 32px; height: 32px;
background: var(--cream2); border: none; border-radius: 50%;
font-size: 1.1rem; cursor: pointer; color: var(--bark);
display: flex; align-items: center; justify-content: center;
}
.mo-close:hover { background: var(--terra); color: white; }
.mo-box h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: var(--espresso); margin-bottom: 6px; }
.mo-box p { font-size: 0.85rem; color: var(--stone); margin-bottom: 24px; }

/* ===== FOOTER ===== */
footer { background: var(--espresso); color: #9a8a80; }
.ft-grid {
display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
padding: 60px 0 50px; border-bottom: 1px solid #3a2a20;
}
.ft-brand p { font-size: 0.82rem; color: #7a6a60; line-height: 1.8; margin: 16px 0 24px; max-width: 260px; }
.ft-social { display: flex; gap: 8px; }
.fsoc {
width: 34px; height: 34px; border-radius: 6px; background: #3a2a20;
display: flex; align-items: center; justify-content: center;
font-size: 0.8rem; text-decoration: none; color: #9a8a80;
transition: all .2s;
}
.fsoc:hover { background: var(--terra); color: white; }
.ft-col h4 {
font-family: 'Playfair Display', serif; font-size: 1rem;
font-weight: 700; color: var(--cream); margin-bottom: 18px; letter-spacing: 0.3px;
}
.ftl {
display: block; color: #7a6a60; font-size: 0.8rem; padding: 4px 0;
text-decoration: none; cursor: pointer; border: none; background: none;
text-align: left; transition: color .2s;
}
.ftl:hover { color: var(--terra); }
.ft-ct { display: flex; gap: 8px; margin-bottom: 12px; font-size: 0.8rem; }
.ft-ct .ico { color: var(--terra); flex-shrink: 0; margin-top: 1px; }
.ft-ct a { color: #9a8a80; text-decoration: none; }
.ft-ct a:hover { color: var(--terra); }
.ft-bottom {
display: flex; justify-content: space-between; align-items: center;
padding: 20px 0; font-size: 0.75rem; color: #5a4a40; flex-wrap: wrap; gap: 10px;
}
.ft-unp { background: #3a2a20; padding: 4px 12px; border-radius: 4px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
.hero::before { width: 38%; }
.ft-grid { grid-template-columns: 1fr 1fr; }
.about-split { grid-template-columns: 1fr; }
.cnt-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
nav, .hdr-actions { display: none; }
.hamburger { display: flex; }
.hero-inner { grid-template-columns: 1fr; }
.hero::before { display: none; }
.hero-visual { display: none; }
.hero { padding: 60px 0 0; }
.hero-text { padding-bottom: 60px; }
.ft-grid { grid-template-columns: 1fr; gap: 30px; }
.frow { grid-template-columns: 1fr; }
.svc-ico { display: none; }
.port-masonry { grid-template-columns: 1fr 1fr; }
.port-item.wide { grid-column: span 1; }
.port-item.tall { grid-row: span 1; }
.mo-box { padding: 28px 22px; }
}
@media (max-width: 480px) {
.hero h1 { font-size: 2.6rem; }
.hero-actions { flex-direction: column; }
.hero-actions .btn { width: 100%; }
.hero-stat-row { gap: 20px; }
.port-masonry { grid-template-columns: 1fr; }
.cta-band-inner { flex-direction: column; text-align: center; }
.about-kpi { grid-template-columns: 1fr 1fr; }
}

/* Entrance animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.fu { animation: fadeUp .65s ease both; }
.fu2 { animation: fadeUp .65s .12s ease both; }
.fu3 { animation: fadeUp .65s .24s ease both; }
.fu4 { animation: fadeUp .65s .36s ease both; }