/* --- Global Reset & Variables --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    /* Brand Primary (Base orange from 'TENNA') */
    --brand-primary: #EE5C23; 
    
    /* Brand Secondary / Highlights (The brighter gold from gradients & icons) */
    --brand-secondary: #F4BA36; 
    
    /* Brand Accent / Shades (The darker gold from gradients & 'SERVICES' text) */
    --brand-accent: #925D23; 

    /* UI Text (Based on 'Catering & Events Management' black) */
    --text-primary: #000000;
    --text-secondary: #555555; /* Muted version for contrast */

    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-light: #f9f9f9;
}

body {
    background-color: var(--bg-white);
    color: var(--text-primary);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Updated Color Helper Classes */
.highlight-primary { color: var(--brand-primary); }
.highlight-secondary { color: var(--brand-secondary); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- Header --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo img {
    width: auto;
    height: 72px;
    object-fit: contain;
}
.footer-logo {
    display: inline-flex;
    margin-bottom: 12px;
}
.footer-logo img { height: 120px; }

.nav-links {
    display: flex;
    gap: 25px;
}
.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--brand-primary);
}

.nav-icons { display: flex; gap: 15px; color: var(--text-primary); cursor: pointer; }
.hamburger { display: none; cursor: pointer; font-size: 1.5rem; }

/* --- Buttons --- */
.btn-primary {
    background: var(--brand-primary);
    color: var(--bg-white);
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    font-weight: bold;
    transition: transform 0.3s, background 0.3s;
}
.btn-primary:hover {
    background: var(--brand-accent);
    transform: scale(1.05);
}

.btn-outline {
    border: 1px solid var(--brand-secondary);
    color: var(--brand-secondary);
    padding: 8px 25px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s;
}
.btn-outline:hover {
    background: var(--brand-secondary);
    color: var(--bg-white);
}

.btn-small {
    background: var(--brand-primary);
    color: var(--bg-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: background 0.3s;
}
.btn-small:hover { background: var(--brand-accent); }

/* --- Hero Section --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 5%;
    background: var(--bg-white);
    min-height: 80vh;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    z-index: -2;
    top: 0;
    right: 0;
    width: 66%;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary));
    /* One uninterrupted sweep: it starts at the top edge and finishes near
       the right-hand third of the bottom edge, like the reference artwork. */
    border-bottom-left-radius: 64% 100%;
}
.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 4%;
    bottom: 8%;
    width: 72px;
    height: 72px;
    border: 12px solid rgba(255,255,255,.28);
    border-radius: 50%;
}

.hero-content { width: 40%; z-index: 2; }
.hero-content .tagline {
    color: var(--brand-primary);
    font-weight: bold;
    letter-spacing: 1px;
}
.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 15px 0;
}
.hero-content p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.5;
}

.hero-image {
    width: 52%;
    min-height: clamp(440px, 45vw, 640px);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(24px, 3vw, 50px);
}
.circle-bg {
    position: absolute;
    width: clamp(390px, 36vw, 590px);
    aspect-ratio: 1;
    background: rgba(255,255,255,.96);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 24px 60px rgba(103, 52, 14, .2);
}
.hero-image::before,
.hero-image::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
    border: 6px solid rgba(255,255,255,.75);
    z-index: 3;
}
.hero-image::before {
    width: clamp(92px, 9vw, 142px);
    aspect-ratio: 1;
    right: -1%;
    top: 5%;
    background-image: url('https://images.unsplash.com/photo-1547592180-85f173990554?auto=format&fit=crop&w=240&q=80');
}
.hero-image::after {
    width: clamp(68px, 7vw, 108px);
    aspect-ratio: 1;
    right: 5%;
    bottom: 3%;
    background-image: url('https://images.unsplash.com/photo-1540189549336-e6e99c3679fe?auto=format&fit=crop&w=180&q=80');
}
.hero-image img {
    border-radius: 50%;
    z-index: 2;
    width: clamp(350px, 32vw, 540px);
    aspect-ratio: 1;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border: 10px solid rgba(255,255,255,.72);
}

/* --- About Brief --- */
.about-brief {
    display: flex;
    align-items: center;
    padding: 80px 10%;
    gap: 50px;
}
.about-img {
    flex: 1;
    position: relative;
    min-height: 380px;
    display: grid;
    place-items: center;
    isolation: isolate;
}
.orange-shape {
    position: absolute;
    width: 72%;
    height: 78%;
    background: linear-gradient(145deg, var(--brand-secondary), var(--brand-primary));
    border-radius: 70px 8px 90px 18px;
    top: 1%;
    left: 2%;
    z-index: -1;
    transform: rotate(-2deg);
}
.orange-shape::after {
    content: "";
    position: absolute;
    width: 42%;
    height: 46%;
    right: -18%;
    bottom: -16%;
    background: var(--bg-white);
    border-radius: 50% 0 0 0;
}
.about-img img {
    width: 330px;
    height: 330px;
    object-fit: cover;
    border-radius: 50%;
    transform: translate(8%, 5%);
    border: 9px solid var(--bg-white);
    box-shadow: 0 18px 40px rgba(73, 36, 10, .18);
}
.about-text { flex: 1; }
.about-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
.about-text h2 span { color: var(--brand-secondary); }
.about-text p { color: var(--text-secondary); margin-bottom: 20px; line-height: 1.6; }

/* --- Services (Homepage) --- */
.popular-services { padding: 60px 5%; text-align: center; background: var(--bg-light); }
.popular-services h2 { font-size: 2.5rem; margin-bottom: 12px; }
.popular-services h2 span { color: var(--brand-primary); }
.section-heading { max-width: 720px; margin: 0 auto 42px; }
.section-heading p { color: var(--text-secondary); line-height: 1.7; }
.eyebrow { display: block; color: var(--brand-primary); font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; font-size: .78rem; margin-bottom: 10px; }
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.service-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.service-card img { height: 200px; width: 100%; object-fit: cover; }
.card-content { padding: 20px; text-align: left; }
.card-content h3 { margin-bottom: 10px; font-size: 1.2rem; }
.card-content > p { color: var(--text-secondary); line-height: 1.55; }
.service-number { float: right; color: rgba(238,92,35,.22); font-size: 2rem; font-weight: 900; line-height: 1; }
.service-points { margin: 18px 0; display: grid; gap: 9px; color: var(--text-secondary); font-size: .9rem; }
.service-points li::before { content: "\2713"; color: var(--brand-primary); font-weight: 900; margin-right: 9px; }
.service-link { color: var(--brand-primary); font-weight: 800; font-size: .9rem; }
.service-link i { margin-left: 6px; transition: transform .25s; }
.service-link:hover i { transform: translateX(5px); }
.card-footer { display: flex; justify-content: space-between; align-items: center; }
.stars { color: var(--brand-secondary); font-size: 0.8rem; }

/* --- Why Choose Us --- */
.why-choose { padding: 80px 5%; text-align: center; }
.why-choose h2 { font-size: 2.5rem; margin-bottom: 50px; }
.why-choose h2 span { color: var(--brand-primary); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.feature-box {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.feature-box:hover { transform: scale(1.02); }
.feature-box.highlight-box {
    /* Updated shadow color */
    box-shadow: 0 10px 30px rgba(238, 92, 35, 0.15);
    transform: scale(1.02);
}
.feature-box.highlight-box:hover { transform: scale(1.05); }
.icon-box {
    width: 60px; height: 60px;
    background: rgba(244, 186, 54, 0.15); /* Secondary color with opacity */
    color: var(--brand-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px auto;
}

/* --- Footer --- */
footer {
    background: #fdfdfd;
    padding: 60px 5% 20px 5%;
    border-top: 1px solid #eee;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 { margin-bottom: 15px; color: var(--text-primary); }
.footer-col p { color: var(--text-secondary); line-height: 1.8; font-size: 0.9rem; }
.subscribe-box {
    display: flex;
    background: var(--bg-white);
    border: 1px solid #ddd;
    border-radius: 30px;
    overflow: hidden;
}
.subscribe-box input {
    border: none; padding: 10px 15px; flex: 1; outline: none;
}
.subscribe-box button {
    background: var(--brand-secondary);
    color: var(--bg-white); border: none;
    padding: 0 20px; cursor: pointer;
    transition: background 0.3s;
}
.subscribe-box button:hover { background: var(--brand-accent); }
.footer-bottom {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* --- Internal Pages (About & Services) --- */
.page-header {
    text-align: center;
    padding: 80px 20px;
    background: rgba(244, 186, 54, 0.1); /* Secondary color with very light opacity */
}
.page-header h1 { font-size: 3rem; margin-bottom: 10px; }
.page-header h1 span { color: var(--brand-primary); }
.page-header p { color: var(--text-secondary); font-size: 1.2rem; }

.about-full { padding: 60px 20px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.about-text-block h3 { color: var(--brand-primary); margin-top: 20px; margin-bottom: 10px; }
.about-text-block p { color: var(--text-secondary); line-height: 1.6; }
.info-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid var(--brand-secondary);
}
.info-card h4 { margin-bottom: 15px; }
.info-card ul { list-style: disc; margin-left: 20px; color: var(--text-secondary); line-height: 1.6; }

/* --- About page sections --- */
.about-section { padding: 90px 5%; }
.about-section-grid { display: grid; grid-template-columns: 180px 1fr; gap: 60px; }
.about-section-label span { color: var(--brand-primary); font-size: 3.5rem; font-weight: 900; }
.about-section-label p { color: var(--text-secondary); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.about-section-copy { max-width: 780px; }
.about-section-copy h2, .readiness-copy h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 22px; }
.about-section-copy p, .readiness-copy p { color: var(--text-secondary); line-height: 1.8; }
.about-section-copy .lead { color: var(--text-primary); font-size: 1.25rem; font-weight: 600; margin-bottom: 16px; }
.owner-role { color: var(--brand-primary); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; }
.owner-section { padding: 95px 5%; background: var(--bg-light); overflow: hidden; }
.owner-spotlight { display: grid; grid-template-columns: minmax(320px, 480px) 1fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.owner-photo-wrap { min-height: 570px; position: relative; display: grid; place-items: center; isolation: isolate; }
.owner-photo-shape { position: absolute; inset: 5% 0 0 4%; z-index: -1; border-radius: 48% 48% 24px 24px; background: linear-gradient(145deg, var(--brand-secondary), var(--brand-primary)); transform: rotate(-3deg); }
.owner-photo-shape::after { content: ""; position: absolute; width: 110px; height: 110px; right: -28px; top: 45px; border: 16px solid rgba(255,255,255,.38); border-radius: 50%; }
.owner-photo { width: 88%; height: 540px; object-fit: cover; object-position: center top; border-radius: 48% 48% 22px 22px; border: 8px solid var(--bg-white); box-shadow: 0 22px 50px rgba(70,35,10,.2); }
.owner-spotlight-copy { max-width: 650px; }
.owner-spotlight-copy h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1; margin-bottom: 15px; }
.owner-spotlight-copy .owner-role { display: block; margin-bottom: 28px; }
.owner-spotlight-copy > p { color: var(--text-secondary); line-height: 1.8; }
.owner-spotlight-copy .owner-intro { color: var(--text-primary); font-size: 1.3rem; font-weight: 650; margin-bottom: 15px; }
.owner-contact { display: inline-flex; align-items: center; gap: 14px; margin-top: 28px; color: var(--text-primary); font-weight: 800; }
.owner-contact > i { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: var(--brand-primary); color: var(--bg-white); }
.owner-contact span { display: grid; }
.owner-contact small { color: var(--text-secondary); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.about-purpose { background: linear-gradient(135deg, var(--brand-primary), #d94a16); color: var(--bg-white); }
.about-section-label.light span, .about-section-label.light p { color: var(--bg-white); }
.purpose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 35px; }
.purpose-card { padding: 38px; border: 1px solid rgba(255,255,255,.28); border-radius: 28px; background: rgba(255,255,255,.1); }
.purpose-card i { font-size: 2rem; color: var(--brand-secondary); margin-bottom: 25px; }
.purpose-card h2 { margin-bottom: 14px; }
.purpose-card p { line-height: 1.75; color: rgba(255,255,255,.9); }
.about-readiness { background: var(--bg-light); }
.readiness-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 28px; margin-top: 35px; align-items: stretch; }
.readiness-grid .info-card { margin: 0; border-left: 0; border-top: 4px solid var(--brand-secondary); background: var(--bg-white); }
.readiness-grid .info-card h3 { margin-bottom: 16px; }
.contact-card p { color: var(--text-secondary); line-height: 1.8; }

.services-full { padding: 70px 20px; }
.service-group { display: grid; grid-template-columns: .9fr 1.7fr; gap: 55px; padding: 55px 0; border-bottom: 1px solid #e8e8e8; scroll-margin-top: 110px; }
.service-group:last-child { border-bottom: 0; }
.group-intro { position: relative; }
.group-number { position: absolute; right: 0; top: -18px; font-size: 4.5rem; font-weight: 900; color: rgba(238,92,35,.1); }
.group-intro > i { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: rgba(244,186,54,.18); color: var(--brand-primary); font-size: 1.35rem; margin-bottom: 22px; }
.service-group-image { width: 100%; aspect-ratio: 3 / 2; height: auto; object-fit: cover; object-position: center; border-radius: 26px; margin-bottom: 25px; box-shadow: 0 15px 35px rgba(69,40,19,.14); }
.group-intro h2 { font-size: 2rem; margin-bottom: 14px; }
.group-intro p, .service-detail p { color: var(--text-secondary); line-height: 1.65; }
.group-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; align-self: center; align-items: start; }
.service-detail { height: fit-content; background: var(--bg-light); padding: 28px 24px; border-radius: 18px; border-top: 3px solid var(--brand-secondary); }
.service-detail h3 { margin-bottom: 10px; font-size: 1.05rem; }
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: 0.3s;
}
.service-item:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.1); transform: translateY(-5px); }
.service-item i { font-size: 2rem; color: var(--brand-primary); }
.service-item h3 { margin-bottom: 5px; }
.service-item p { color: var(--text-secondary); font-size: 0.9rem; }

.cta-banner {
    background: var(--brand-primary);
    color: var(--bg-white);
    text-align: center;
    padding: 60px 20px;
}
.cta-banner h2 { font-size: 2.5rem; margin-bottom: 10px; }
.cta-banner p { margin-bottom: 20px; }
.cta-banner .btn-primary { background: var(--bg-white); color: var(--brand-primary); }
.cta-banner .btn-primary:hover { background: #eee; transform: scale(1.05); }

/* --- Contact page --- */
.contact-header .eyebrow { margin-bottom: 12px; }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(45px, 7vw, 90px); padding-top: 90px; padding-bottom: 90px; }
.contact-intro h2, .contact-form h2, .map-heading h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 15px; }
.contact-intro > p, .contact-form > p { color: var(--text-secondary); line-height: 1.7; }
.contact-methods { display: grid; gap: 17px; margin: 35px 0; }
.contact-method { display: flex; align-items: center; gap: 15px; }
.contact-method > i { flex: 0 0 48px; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: rgba(244,186,54,.18); color: var(--brand-primary); }
.contact-method span { display: grid; color: var(--text-primary); font-weight: 700; }
.contact-method small { color: var(--text-secondary); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.contact-hours { padding: 25px; background: var(--bg-light); border-radius: 20px; }
.contact-hours h3 { margin-bottom: 15px; }
.contact-hours p { display: flex; justify-content: space-between; gap: 20px; padding: 8px 0; color: var(--text-secondary); border-bottom: 1px solid #e8e8e8; }
.contact-hours p:last-child { border-bottom: 0; }
.contact-hours p span { color: var(--text-primary); font-weight: 700; }
.contact-form { padding: clamp(28px, 5vw, 48px); background: var(--bg-white); border-radius: 28px; box-shadow: 0 18px 55px rgba(69,40,19,.1); }
.contact-form label { display: grid; gap: 8px; margin-top: 20px; color: var(--text-primary); font-size: .9rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 14px 15px; border: 1px solid #ddd; border-radius: 12px; outline: none; color: var(--text-primary); background: var(--bg-white); font: inherit; transition: border-color .25s, box-shadow .25s; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--brand-primary); box-shadow: 0 0 0 3px rgba(238,92,35,.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { border: 0; cursor: pointer; margin-top: 24px; }
.form-submit i { margin-left: 8px; }
.map-section { background: var(--bg-light); padding-top: 75px; }
.map-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.map-heading a { color: var(--brand-primary); font-weight: 800; white-space: nowrap; }
.map-heading a i { margin-left: 7px; }
.map-frame { width: 100%; height: 500px; border-top: 8px solid var(--brand-secondary); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* --- ANIMATIONS (CSS) --- */
.fade-in { animation: fadeIn 1s ease-in forwards; }
.slide-up { opacity: 0; transform: translateY(30px); animation: slideUp 0.8s ease-out forwards; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
    .hero { flex-direction: column-reverse; padding: 28px 20px 55px; text-align: center; }
    .hero::before {
        top: 0;
        width: 100%;
        height: 54%;
        border-bottom-left-radius: 52% 28%;
        border-bottom-right-radius: 52% 28%;
    }
    .hero::after { display: none; }
    .hero-content { width: 100%; margin-top: 20px; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-image { width: 100%; min-height: clamp(390px, 62vw, 540px); margin-bottom: 20px; }
    .circle-bg { width: clamp(330px, 54vw, 460px); }
    .hero-image img { width: clamp(290px, 47vw, 410px); }
    .hero-image::before { width: clamp(72px, 12vw, 100px); right: 10%; top: 4%; }
    .hero-image::after { width: clamp(55px, 9vw, 78px); right: 16%; bottom: 4%; }
    .about-brief { flex-direction: column; padding: 40px 5%; text-align: center; }
    .about-img { width: min(100%, 470px); min-height: 350px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-section-grid { grid-template-columns: 1fr; gap: 25px; }
    .purpose-grid { grid-template-columns: 1fr; }
    .readiness-grid { grid-template-columns: 1fr; }
    .service-group { grid-template-columns: 1fr; gap: 30px; }
    .owner-spotlight { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .owner-photo-wrap { min-height: 500px; }
    .owner-photo { width: min(88%, 430px); height: 470px; }
    .service-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    header { padding-top: 10px; padding-bottom: 10px; }
    header .logo img { height: 60px; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; width: 100%; background: white; padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    .nav-links.active { display: flex; }
    .nav-icons { display: none; }
    .hamburger { display: block; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { justify-content: center; }
    .about-img img { width: 280px; height: 280px; transform: translate(5%, 4%); }
    .orange-shape { width: 76%; height: 74%; left: 4%; }
    .about-section { padding: 65px 5%; }
    .about-section-label span { font-size: 2.8rem; }
    .group-services { grid-template-columns: 1fr; }
    .owner-section { padding: 65px 5%; }
    .owner-photo-wrap { min-height: 430px; }
    .owner-photo { height: 410px; }
    .owner-spotlight-copy { text-align: center; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .map-heading { align-items: flex-start; flex-direction: column; }
    .map-frame { height: 400px; }
}

@media (max-width: 600px) {
    .hero-image { min-height: 360px; padding: 18px; }
    .circle-bg { width: clamp(270px, 82vw, 350px); }
    .hero-image img { width: clamp(235px, 70vw, 305px); border-width: 7px; }
    .hero-image::before { width: clamp(58px, 18vw, 78px); right: 2%; top: 5%; border-width: 4px; }
    .hero-image::after { width: clamp(46px, 14vw, 62px); right: 9%; bottom: 6%; border-width: 4px; }
}
