/* GADLY — Best Catering Website. Light + vert sage. */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --g-white: #ffffff;
    --g-cream: #f5f7e8;
    --g-cream-soft: #fafce8;
    --g-green: #2d5a3d;
    --g-green-deep: #1f4029;
    --g-green-light: #c8d9b8;
    --g-green-mint: #d4e5d4;
    --g-text: #1a1a1a;
    --g-text-mute: #7a7a7a;
    --g-line: #e8e8d8;
    --g-font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--g-white); color: var(--g-text); font-family: var(--g-font-body); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .25s ease; }
button { background: 0; border: 0; cursor: pointer; font: inherit; color: inherit; }

/* HEADER */
.g-header { background: var(--g-cream); padding: 1.25rem 2.5rem; }
.g-header__inner { display: flex; align-items: center; justify-content: space-between; max-width: 1300px; margin: 0 auto; gap: 2rem; }
.g-logo { display: flex; align-items: center; gap: .5rem; font-size: 1.35rem; font-weight: 700; color: var(--g-green); }
.g-logo__leaf { font-size: 1.2rem; }
.g-nav ul { display: flex; gap: 2rem; list-style: none; }
.g-nav a { font-size: .92rem; color: var(--g-text); font-weight: 500; }
.g-nav a:hover { color: var(--g-green); }

/* BUTTONS */
.g-btn { display: inline-flex; align-items: center; padding: .85rem 1.85rem; border-radius: 999px; font-size: .85rem; font-weight: 600; cursor: pointer; transition: all .25s ease; border: 1.5px solid transparent; }
.g-btn--green { background: var(--g-green); color: var(--g-white); border-color: var(--g-green); }
.g-btn--green:hover { background: var(--g-green-deep); border-color: var(--g-green-deep); }
.g-btn--outline { background: transparent; color: var(--g-green); border-color: var(--g-green); }
.g-btn--outline:hover { background: var(--g-green); color: var(--g-white); }

.g-section-title { font-size: clamp(1.85rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; letter-spacing: -.02em; color: var(--g-text); margin-bottom: 1rem; }

/* HERO */
.g-hero { background: var(--g-cream); padding: 2rem 2.5rem 4rem; position: relative; overflow: hidden; }
.g-hero__inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; }
.g-hero__text { padding-left: 2rem; }
.g-hero__eyebrow { display: inline-block; color: var(--g-green); font-size: .9rem; font-weight: 600; margin-bottom: 1rem; font-style: italic; }
.g-hero__title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1; letter-spacing: -.03em; margin-bottom: 1.5rem; }
.g-hero__lead { color: var(--g-text-mute); font-size: 1rem; line-height: 1.7; max-width: 460px; margin-bottom: 2rem; }
.g-hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.g-hero__plate { aspect-ratio: 1; max-width: 540px; }
.g-hero__plate img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.g-hero__plate-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--g-green-light) 0%, var(--g-green) 100%); border-radius: 50%; }
.g-hero__dots { position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%); display: flex; gap: .75rem; }
.g-hero__dot { width: 36px; height: 36px; border-radius: 50%; background: var(--g-green); color: var(--g-white); display: inline-flex; align-items: center; justify-content: center; font-size: .82rem; font-weight: 600; }
@media (max-width: 800px) { .g-hero__inner { grid-template-columns: 1fr; } .g-hero__text { padding-left: 0; } }

/* SERVICES grid */
.g-services { background: var(--g-white); padding: clamp(3rem, 6vw, 5rem) 2.5rem; }
.g-services__inner { max-width: 1200px; margin: 0 auto; }
.g-services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.g-services__card { background: var(--g-cream-soft); padding: 1.85rem 1.5rem; border-radius: 18px; transition: transform .3s ease; }
.g-services__card:hover { transform: translateY(-3px); }
.g-services__icon { display: inline-block; font-size: 1.5rem; color: var(--g-green); margin-bottom: 1rem; }
.g-services__card h3 { font-size: 1rem; margin-bottom: .5rem; font-weight: 700; }
.g-services__card p { font-size: .85rem; color: var(--g-text-mute); line-height: 1.55; }
@media (max-width: 900px) { .g-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .g-services__grid { grid-template-columns: 1fr; } }

/* FEEDBACK */
.g-feedback { background: var(--g-white); padding: clamp(3rem, 6vw, 5rem) 2.5rem; }
.g-feedback__inner { max-width: 1200px; margin: 0 auto; }
.g-feedback__head { text-align: center; margin-bottom: 3rem; }
.g-feedback__dots { display: flex; gap: .5rem; justify-content: center; margin-top: .5rem; }
.g-feedback__dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--g-text-mute); opacity: .3; }
.g-feedback__dots span.is-active { opacity: 1; background: var(--g-green); }
.g-feedback__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.g-feedback__card figure { aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; margin-bottom: 1.25rem; background: var(--g-cream); }
.g-feedback__card figure img { width: 100%; height: 100%; object-fit: cover; }
.g-feedback__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--g-cream) 0%, var(--g-green-light) 100%); }
.g-feedback__card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.g-feedback__card p { font-size: .9rem; color: var(--g-text-mute); line-height: 1.6; margin-bottom: 1rem; }
.g-feedback__socials { display: flex; gap: .5rem; }
.g-feedback__socials span { width: 28px; height: 28px; border-radius: 50%; background: var(--g-cream); display: inline-flex; align-items: center; justify-content: center; font-size: .75rem; color: var(--g-green); }
@media (max-width: 800px) { .g-feedback__grid { grid-template-columns: 1fr; } }

/* FIVIUS */
.g-fivius { background: var(--g-cream-soft); padding: clamp(3rem, 6vw, 5rem) 2.5rem; }
.g-fivius__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.g-fivius__intro { color: var(--g-text-mute); font-size: .95rem; margin-bottom: 1rem; }
.g-fivius__text p { color: var(--g-text-mute); margin: 1rem 0; line-height: 1.8; }
.g-fivius__photo { aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; background: var(--g-cream); }
.g-fivius__photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 800px) { .g-fivius__inner { grid-template-columns: 1fr; } }

/* FOOTER */
.g-footer { background: var(--g-green); color: rgba(255,255,255,.85); padding: 1rem; }
.g-footer__bottom { text-align: center; font-size: .85rem; }

.preview-banner { background: var(--g-green); color: #fff; text-align: center; padding: .5rem; font-weight: 600; font-size: .82rem; }
[x-cloak] { display: none !important; }
