:root {
 --cream: #f3efe5;
 --cream-2: #fbf8f1;
 --sand: #e5dcc7;
 --olive: #55624c;
 --olive-dark: #303b2b;
 --charcoal: #1f241d;
 --text: #273026;
 --muted: #5e6758;
 --line: rgba(48, 59, 43, 0.12);
 --white: #ffffff;
 --shadow: 0 18px 40px rgba(16, 20, 14, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
 margin: 0;
 font-family: 'Inter', sans-serif;
 color: var(--text);
 background: var(--cream);
 line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
input, textarea, button { font: inherit; }

.container {
 width: min(1180px, calc(100% - 2rem));
 margin: 0 auto;
}

.site-header {
 position: sticky;
 top: 0;
 z-index: 100;
 background: rgba(251, 248, 241, 0.9);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid var(--line);
}

.nav-wrap {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 1rem;
 padding: 0.9rem 0;
}

.brand {
 display: flex;
 align-items: center;
 gap: 0.8rem;
 font-weight: 800;
}

.brand img {
 width: 46px;
 height: 46px;
 object-fit: cover;
 border-radius: 50%;
 border: 2px solid rgba(85, 98, 76, 0.18);
}

.site-nav {
 display: flex;
 gap: 1.35rem;
 color: var(--muted);
 font-weight: 600;
}

.site-nav a.is-current {
 color: var(--olive-dark);
}

.nav-cta,
.button {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 border-radius: 999px;
 font-weight: 700;
 transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nav-cta {
 padding: 0.8rem 1.15rem;
 background: var(--olive-dark);
 color: var(--white);
}

.button {
 padding: 1rem 1.25rem;
 border: 1px solid transparent;
 cursor: pointer;
}

.button:hover,
.nav-cta:hover { transform: translateY(-1px); }

.button-primary {
 background: var(--white);
 color: var(--charcoal);
}

.button-secondary {
 border-color: rgba(255,255,255,0.35);
 color: var(--white);
 background: rgba(255,255,255,0.06);
}

.button-dark {
 background: var(--olive-dark);
 color: var(--white);
}

.button-outline {
 background: transparent;
 color: var(--olive-dark);
 border-color: rgba(48, 59, 43, 0.18);
}

.button-full {
 width: 100%;
}

.hero {
 position: relative;
 min-height: 88vh;
 display: flex;
 align-items: center;
 overflow: hidden;
 background: #d6cfbf;
}

.hero-bg {
 position: absolute;
 inset: 0;
}

.hero-bg img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.hero-overlay {
 position: absolute;
 inset: 0;
 background: linear-gradient(90deg, rgba(29, 36, 24, 0.78) 0%, rgba(29, 36, 24, 0.55) 38%, rgba(29, 36, 24, 0.15) 100%);
}

.hero-content {
 position: relative;
 z-index: 1;
 color: var(--white);
 padding: 7rem 0 5rem;
 max-width: 720px;
}

.eyebrow {
 margin: 0 0 0.75rem;
 font-size: 0.82rem;
 font-weight: 800;
 text-transform: uppercase;
 letter-spacing: 0.14em;
 color: #d8e2d1;
}

.eyebrow-dark {
 color: var(--olive);
}

h1, h2, h3 {
 margin: 0 0 1rem;
 line-height: 1.08;
}

h1 {
 font-size: clamp(2.8rem, 6vw, 5.2rem);
 max-width: 11ch;
}

h2 {
 font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
 font-size: 1.3rem;
}

.page-title {
 max-width: 13ch;
 color: var(--olive-dark);
}

.intro,
.page-intro {
 max-width: 56ch;
 font-size: 1.08rem;
}

.intro {
 color: rgba(255,255,255,0.88);
}

.page-intro {
 color: var(--muted);
}

.hero-actions {
 display: flex;
 gap: 1rem;
 flex-wrap: wrap;
 margin: 1.7rem 0 2rem;
}

.hero-notes {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 1rem;
}

.hero-notes div,
.contact-panel p {
 padding: 1rem;
 background: rgba(255,255,255,0.08);
 border: 1px solid rgba(255,255,255,0.18);
 border-radius: 18px;
 backdrop-filter: blur(8px);
}

.hero-notes strong,
.contact-details strong,
.contact-panel strong {
 display: block;
 margin-bottom: 0.2rem;
}

.intro-band {
 background: var(--olive-dark);
 color: var(--white);
}

.intro-band-grid {
 display: grid;
 grid-template-columns: 1.5fr auto;
 gap: 1rem;
 align-items: center;
 padding: 1.15rem 0;
}

.intro-band p {
 margin: 0;
 font-size: 1.02rem;
}

.intro-band a {
 font-weight: 700;
 color: #dbe8d2;
}

.section {
 padding: 5rem 0;
}

.section-light {
 background: var(--cream-2);
}

.section-heading,
.work-header {
 display: grid;
 gap: 1rem;
 margin-bottom: 2rem;
}

.section-heading p:last-child,
.work-header p:last-child,
.about-copy p,
.service-card p,
.detail-card p,
.detail-card li,
.site-footer p {
 color: var(--muted);
}

.services-grid,
.cards-grid {
 display: grid;
 gap: 1.2rem;
}

.services-grid {
 grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-grid-large {
 grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-grid-three {
 grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.detail-card,
.form-card {
 background: var(--white);
 border: 1px solid var(--line);
 border-radius: 24px;
 padding: 1.5rem;
 box-shadow: var(--shadow);
}

.detail-card ul {
 margin: 1rem 0 0;
 padding-left: 1.1rem;
}

.service-number {
 display: inline-flex;
 margin-bottom: 1rem;
 color: var(--olive);
 font-weight: 800;
 font-size: 0.95rem;
}

.section-cta {
 margin-top: 2rem;
}

.work-section {
 background: var(--cream);
}

.work-header {
 grid-template-columns: 1.1fr 0.9fr;
 align-items: end;
}

.gallery-grid {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 1rem;
}

.gallery-item {
 margin: 0;
 border-radius: 24px;
 overflow: hidden;
 box-shadow: var(--shadow);
 aspect-ratio: 4 / 5;
 background: #ddd4c3;
}

.gallery-item.wide {
 grid-column: span 2;
 aspect-ratio: 16 / 9;
}

.gallery-item img,
.about-image img,
.page-hero-image img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.about-grid,
.page-hero-grid,
.split-band-grid,
.footer-grid {
 display: grid;
 gap: 2rem;
 align-items: center;
}

.about-grid {
 grid-template-columns: 0.95fr 1.05fr;
}

.about-copy ul {
 padding-left: 1.1rem;
 color: var(--muted);
}

.about-image,
.page-hero-image {
 border-radius: 28px;
 overflow: hidden;
 min-height: 440px;
 box-shadow: var(--shadow);
}

.page-hero {
 padding: 4.5rem 0 3.5rem;
 background: linear-gradient(180deg, #f6f2e7 0%, #eee6d6 100%);
}

.page-hero-grid {
 grid-template-columns: 1.05fr 0.95fr;
}

.page-hero-contact {
 background: linear-gradient(180deg, #f7f3ea 0%, #ece3d0 100%);
}

.contact-panel {
 display: grid;
 gap: 0.9rem;
}

.contact-panel p {
 margin: 0;
 background: rgba(255,255,255,0.7);
 border: 1px solid rgba(48, 59, 43, 0.1);
}

.split-band {
 background: var(--olive-dark);
 color: var(--white);
}

.split-band-grid {
 grid-template-columns: 1.1fr 0.9fr;
}

.split-band .check-list,
.contact-box,
.site-footer {
 background: rgba(255,255,255,0.05);
}

.check-list {
 padding: 1.5rem;
 border-radius: 24px;
 border: 1px solid rgba(255,255,255,0.14);
}

.check-list p,
.check-list li,
.split-band p {
 color: rgba(255,255,255,0.82);
}

.contact-section {
 background: linear-gradient(180deg, #f2eddf 0%, #e7dfcb 100%);
}

.contact-box {
 color: var(--white);
 border-radius: 32px;
 padding: 2rem;
 display: grid;
 grid-template-columns: 1.1fr 0.9fr;
 gap: 2rem;
 box-shadow: var(--shadow);
 background: var(--olive-dark);
}

.contact-box p,
.contact-details a {
 color: rgba(255,255,255,0.82);
}

.contact-details {
 display: grid;
 gap: 1rem;
}

.contact-details p {
 margin: 0;
 padding: 1rem 1.1rem;
 border-radius: 18px;
 background: rgba(255,255,255,0.06);
 border: 1px solid rgba(255,255,255,0.12);
}

.contact-form {
 display: grid;
 gap: 1rem;
}

.contact-form label {
 display: grid;
 gap: 0.45rem;
 font-weight: 600;
 color: var(--olive-dark);
}

.contact-form input,
.contact-form textarea {
 width: 100%;
 padding: 0.95rem 1rem;
 border-radius: 16px;
 border: 1px solid rgba(48, 59, 43, 0.14);
 background: #fcfbf7;
 color: var(--text);
}

.contact-form textarea {
 resize: vertical;
 min-height: 150px;
}

.form-status {
 margin-bottom: 1rem;
 padding: 0.95rem 1rem;
 border-radius: 16px;
 font-weight: 600;
}

.form-status.success {
 background: #e4efe1;
 color: #2f5426;
}

.form-status.error {
 background: #f6e2df;
 color: #8a342d;
}

.site-footer {
 padding: 2.5rem 0;
 border-top: 1px solid var(--line);
 background: #f7f2e8;
}

.footer-grid {
 grid-template-columns: 1.2fr 0.9fr 0.7fr;
 align-items: start;
}

.footer-grid h3 {
 color: var(--olive-dark);
}

.reveal {
 opacity: 0;
 transform: translateY(26px);
 transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
 opacity: 1;
 transform: translateY(0);
}

@media (max-width: 980px) {
 .site-nav,
 .nav-cta {
 display: none;
 }

 .hero {
 min-height: auto;
 }

 .hero-content,
 .section,
 .contact-section,
 .page-hero {
 padding-top: 4rem;
 }

 .hero-notes,
 .services-grid,
 .gallery-grid,
 .about-grid,
 .contact-box,
 .work-header,
 .intro-band-grid,
 .page-hero-grid,
 .cards-grid-large,
 .cards-grid-three,
 .split-band-grid,
 .footer-grid {
 grid-template-columns: 1fr;
 }

 .gallery-item.wide {
 grid-column: span 1;
 aspect-ratio: 4 / 5;
 }

 .about-image,
 .page-hero-image {
 min-height: 320px;
 }
}

@media (max-width: 640px) {
 .brand span {
 font-size: 0.95rem;
 }

 h1,
 .page-title {
 max-width: none;
 }

 .hero-content {
 padding: 5.5rem 0 4rem;
 }

 .hero-notes div,
 .service-card,
 .detail-card,
 .contact-box,
 .form-card,
 .gallery-item,
 .about-image,
 .page-hero-image,
 .check-list {
 border-radius: 20px;
 }
}


/* WhatsApp */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.whatsapp-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.btn-whatsapp {
    background: #25D366;
    color: #ffffff !important;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    opacity: 0.92;
}

.contact-whatsapp {
    margin-top: 18px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        padding: 12px 16px;
        font-size: 14px;
    }
}

.reveal {
 opacity: 0;
 transform: translateY(30px);
 transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
 opacity: 1;
 transform: translateY(0);
}

.button-small {
 padding: 0.7rem 1rem;
 font-size: 0.92rem;
}

.admin-page-body {
 min-height: 100vh;
 display: grid;
 place-items: center;
 padding: 2rem;
 background: linear-gradient(180deg, #f8f4ea 0%, #eee6d3 100%);
}

.admin-login-card {
 width: min(520px, 100%);
 background: var(--white);
 border-radius: 24px;
 padding: 2rem;
 box-shadow: var(--shadow);
}

.admin-login-card h1 {
 color: var(--olive-dark);
 font-size: 2rem;
}

.admin-login-card form {
 display: grid;
 gap: 0.9rem;
 margin-top: 1.25rem;
}

.admin-login-card input,
.editor-modal input,
.editor-modal textarea {
 width: 100%;
 padding: 0.95rem 1rem;
 border-radius: 14px;
 border: 1px solid rgba(48, 59, 43, 0.18);
 background: #fff;
}

.admin-error {
 color: #a11d1d;
 font-weight: 700;
}

.admin-back-link,
.admin-help-box {
 margin-top: 1rem;
}

.admin-dashboard-actions {
 display: flex;
 flex-wrap: wrap;
 gap: 0.75rem;
 margin-top: 1.5rem;
}

.admin-help-box {
 padding: 1rem 1.1rem;
 border-radius: 18px;
 background: var(--cream-2);
 border: 1px solid var(--line);
}

.admin-toolbar {
 position: sticky;
 top: 0;
 z-index: 999;
 background: #111;
 color: #fff;
}

.admin-toolbar-inner {
 display: flex;
 align-items: center;
 gap: 1rem;
 justify-content: space-between;
 padding: 0.85rem 0;
 flex-wrap: wrap;
}

.admin-toolbar-actions {
 display: flex;
 gap: 0.75rem;
 flex-wrap: wrap;
}

.admin-edit-active .site-header {
 top: 58px;
}

.editable {
 position: relative;
 outline: 2px dashed rgba(245, 186, 43, 0.95);
 outline-offset: 8px;
 cursor: pointer;
}

.editable:hover {
 background: rgba(245, 186, 43, 0.12);
}

.editable-image {
 outline-offset: -10px;
}

.editor-modal {
 position: fixed;
 inset: 0;
 background: rgba(15, 19, 13, 0.66);
 display: none;
 align-items: center;
 justify-content: center;
 padding: 1rem;
 z-index: 1200;
}

.editor-modal.is-open {
 display: flex;
}

.editor-modal-card {
 width: min(640px, 100%);
 background: var(--white);
 border-radius: 24px;
 padding: 1.35rem;
 box-shadow: var(--shadow);
}

.editor-modal-header {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 1rem;
 margin-bottom: 1rem;
}

.editor-close {
 border: 0;
 background: transparent;
 font-size: 2rem;
 line-height: 1;
 cursor: pointer;
}

.editor-field {
 margin-bottom: 1rem;
}

.editor-field label {
 display: block;
 margin-bottom: 0.45rem;
 font-weight: 700;
}

.editor-actions {
 display: flex;
 gap: 0.75rem;
 flex-wrap: wrap;
 margin-top: 1rem;
}

.editor-status {
 margin-top: 0.85rem;
 font-weight: 600;
}
