/* ==========================================================
   INTAYOBERANA — Traditional Dance Troupe Custom Theme
   Rwandan palette: gold, leaf-green, sky-blue, deep-earth
   ========================================================== */

:root {
    /* Palette tuned from the INTAYOBERANA logo: black silhouette + warm amber + cream */
    --iy-gold: #d89a2a;
    --iy-gold-dark: #a66d10;
    --iy-amber: #f2c669;
    --iy-green: #1f7a4c;
    --iy-blue: #0d7ab8;
    --iy-earth: #2b1d0f;
    --iy-cream: #ece5d8;
    --iy-dark: #0f0a05;
    --theme-color: #a66d10;
}

/* Global typography tweaks */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    font-family: 'Manrope', 'Inter', sans-serif;
    color: #2b1f12;
    background: #f6f3ee;
}

/* ==========  SECTION DEFAULTS  ========== */
.iy-section {
    background: #f6f3ee;
}

h1, h2, h3, h4, h5, h6,
.sec-title, .box-title, .hero-title {
    font-family: 'Inter', sans-serif;
    color: var(--iy-earth);
    letter-spacing: -0.01em;
}

.sub-title,
.sub-title.style1 {
    font-family: 'Montez', cursive;
    color: var(--iy-gold) !important;
    font-size: 32px;
    letter-spacing: 0;
}

.sub-title.text-white {
    color: var(--iy-gold) !important;
}

/* Buttons */
.th-btn,
.th-btn.style1,
.th-btn.style3,
.th-btn.style4 {
    background: var(--iy-gold);
    color: #fff !important;
    border-radius: 999px;
    padding: 14px 28px;
    font-weight: 600;
    border: none;
    transition: all .3s ease;
}

.th-btn:hover,
.th-btn.style1:hover,
.th-btn.style3:hover,
.th-btn.style4:hover {
    background: var(--iy-gold-dark);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(166, 109, 16, .35);
}

.th-btn.outline {
    background: transparent;
    border: 2px solid var(--iy-gold);
    color: var(--iy-gold) !important;
}

.th-btn.outline:hover {
    background: var(--iy-gold);
    color: #fff !important;
}

/* ==========  HERO  ========== */
.iy-hero {
    position: relative;
    min-height: 100vh;
    margin-top: 0;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0c0905;
    text-align: center;
    color: #fff;
}

.iy-hero .swiper,
.iy-hero .swiper-wrapper {
    width: 100%;
    height: 100vh;
}

.iy-hero .swiper-slide {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iy-hero .iy-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.05);
    transition: transform 8s ease;
    z-index: 0;
}

.iy-hero .swiper-slide-active .iy-hero-bg {
    transform: scale(1.12);
}

.iy-hero .iy-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15,10,5,.15) 0%, rgba(15,10,5,.55) 100%);
    z-index: 1;
}

.iy-hero .iy-hero-content {
    position: relative;
    z-index: 3;
    max-width: 820px;
    padding: 140px 24px 80px;
}

@media (max-width: 768px) {
    .iy-hero .iy-hero-content { padding: 120px 18px 80px; }
    .iy-hero .iy-hero-kicker { font-size: 20px; padding: 6px 16px; margin-bottom: 16px; }
    .iy-hero h1 { font-size: clamp(32px, 9vw, 48px) !important; }
    .iy-hero p.lead { font-size: 15px; margin-bottom: 24px; }
    .iy-hero .btn-group { gap: 10px; }
    .iy-hero .btn-group .th-btn { padding: 11px 20px; font-size: 14px; }
    .iy-hero-scroll { display: none !important; }
}

.iy-hero .iy-hero-kicker {
    display: inline-block;
    padding: 8px 22px;
    border: 1px solid rgba(216,154,42,.55);
    border-radius: 999px;
    color: var(--iy-amber);
    font-family: 'Montez', cursive;
    font-size: 26px;
    margin-bottom: 22px;
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(6px);
}

.iy-hero h1 {
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin: 0 auto 20px;
    text-shadow: 0 6px 30px rgba(0,0,0,.5);
}

.iy-hero h1 .accent {
    color: var(--iy-amber);
    font-family: 'Montez', cursive;
    font-weight: 400;
}

.iy-hero p.lead {
    color: rgba(255,255,255,.9);
    font-size: 18px;
    max-width: 560px;
    margin: 0 auto 34px;
    line-height: 1.6;
}

.iy-hero .btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.iy-hero .swiper-pagination {
    position: absolute;
    bottom: 40px !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: auto !important;
    z-index: 4;
}

.iy-hero .swiper-pagination-bullet {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,.3);
    opacity: 1;
    margin: 0 4px !important;
    transition: all .3s;
}

.iy-hero .swiper-pagination-bullet-active {
    background: var(--iy-amber);
    width: 54px;
}

/* Scroll hint */
.iy-hero-scroll {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.6);
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: iy-float 2.5s ease-in-out infinite;
}
.iy-hero-scroll::after {
    content: "";
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--iy-amber), transparent);
}

@keyframes iy-float {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

@media (max-width: 767px) {
    .iy-hero-scroll { display: none; }
}

/* ==========  SECTION HEADERS  ========== */
.iy-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.iy-section.alt {
    background: var(--iy-cream);
}

.iy-section.dark {
    background: var(--iy-earth);
    color: #e8dfcf;
}

.iy-section.dark h2,
.iy-section.dark h3 {
    color: #fff;
}

.iy-title-area {
    max-width: 680px;
    margin: 0 auto 60px;
    text-align: center;
}

.iy-title-area .kicker {
    display: inline-block;
    font-family: 'Montez', cursive;
    font-size: 30px;
    color: var(--iy-gold);
    margin-bottom: 6px;
}

.iy-title-area h2 {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800;
    margin-bottom: 14px;
}

.iy-title-area p {
    color: #5d4d3a;
    font-size: 16px;
}

.iy-section.dark .iy-title-area p { color: #c9bda8; }

/* ==========  ABOUT  ========== */
.iy-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .iy-about-grid { grid-template-columns: 1fr; }
}

.iy-about-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.iy-about-images img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    object-position: center 25%;
    box-shadow: 0 20px 40px rgba(58,42,26,.18);
}

.iy-about-images img:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    aspect-ratio: 3/4;
    transform: translateY(30px);
}

.iy-about-images img:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    aspect-ratio: 3/4;
}

.iy-about-images img:nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    aspect-ratio: 16/9;
    transform: translateY(30px);
}
.iy-about-images .iy-stamp {
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 140px;
    height: 140px;
    background: var(--iy-gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(182,128,28,.35);
    border: 6px solid #fff;
}

.iy-about-images .iy-stamp .num {
    font-size: 34px;
    line-height: 1;
}

.iy-about-content h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    margin-bottom: 18px;
    font-weight: 800;
}

.iy-about-content p {
    color: #5d4d3a;
    line-height: 1.75;
    margin-bottom: 18px;
}

.iy-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0;
}

.iy-feature {
    padding: 18px;
    border-left: 3px solid var(--iy-gold);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(58,42,26,.06);
}

.iy-feature i {
    color: var(--iy-gold);
    font-size: 22px;
    margin-bottom: 8px;
}

.iy-feature h5 {
    margin-bottom: 4px;
    font-weight: 700;
    font-size: 16px;
}

.iy-feature p {
    margin: 0;
    font-size: 13px;
    color: #6a5a45;
}

/* ==========  DANCE CATEGORIES  ========== */
.iy-dance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

@media (max-width: 991px) { .iy-dance-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .iy-dance-grid { grid-template-columns: 1fr; } }

.iy-dance-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    min-height: 440px;
    background: #000;
    box-shadow: 0 16px 40px rgba(58,42,26,.18);
    cursor: pointer;
    transition: transform .4s ease;
}

.iy-dance-card:hover { transform: translateY(-6px); }

.iy-dance-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform .8s ease;
}

.iy-dance-card:hover img { transform: scale(1.1); }

.iy-dance-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(10,6,2,.92) 100%);
}

.iy-dance-card .iy-dance-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
    color: #fff;
    z-index: 2;
}

.iy-dance-card .iy-dance-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--iy-gold);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.iy-dance-card h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 6px;
}

.iy-dance-card p {
    color: rgba(255,255,255,.85);
    font-size: 14px;
    margin: 0;
}

/* ==========  GALLERY  ========== */
.iy-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
}

@media (max-width: 991px) { .iy-gallery { grid-template-columns: repeat(2, 1fr); } }

.iy-gallery .item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.iy-gallery .item.tall { grid-row: span 2; }
.iy-gallery .item.wide { grid-column: span 2; }

.iy-gallery .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform .6s ease;
}

.iy-gallery .item:hover img { transform: scale(1.08); }

.iy-gallery .item::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    background: rgba(58,42,26,0);
    opacity: 0;
    transition: all .3s ease;
}

.iy-gallery .item:hover::after {
    background: rgba(58,42,26,.55);
    opacity: 1;
}

/* ==========  EVENTS  ========== */
.iy-event {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 24px;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(58,42,26,.06);
    border-left: 4px solid var(--iy-gold);
    transition: all .3s;
}

.iy-event:hover {
    transform: translateX(6px);
    box-shadow: 0 14px 34px rgba(58,42,26,.12);
}

.iy-event .date {
    text-align: center;
    background: linear-gradient(135deg, var(--iy-gold), var(--iy-gold-dark));
    color: #fff;
    border-radius: 12px;
    padding: 16px;
}

.iy-event .date .day {
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.iy-event .date .mo {
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 12px;
    margin-top: 4px;
}

.iy-event h4 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
}

.iy-event .meta {
    color: #6a5a45;
    font-size: 14px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.iy-event .meta i { color: var(--iy-gold); margin-right: 6px; }

@media (max-width: 767px) {
    .iy-event { grid-template-columns: 1fr; text-align: center; }
    .iy-event .meta { justify-content: center; }
}

/* ==========  CTA / BOOK  ========== */
.iy-cta {
    position: relative;
    padding: 110px 0;
    color: #fff;
    text-align: center;
    background-color: #2b1d0f;
    background-size: cover;
    background-position: center 30%;
    margin: 0;
    display: block;
}

.iy-cta + .iy-footer { margin-top: 0; }

.iy-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(58,42,26,.92), rgba(10,6,2,.88));
}

.iy-cta > * { position: relative; z-index: 2; }

.iy-cta h2 {
    color: #fff;
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 800;
    margin-bottom: 18px;
}

.iy-cta .accent { color: var(--iy-gold); font-family: 'Montez', cursive; font-weight: 400; }

.iy-cta p {
    max-width: 640px;
    margin: 0 auto 32px;
    color: rgba(255,255,255,.85);
    font-size: 17px;
}

/* ==========  STATS  ========== */
.iy-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 60px 0;
}
@media (max-width: 767px) { .iy-stats { grid-template-columns: repeat(2, 1fr); } }

.iy-stat {
    text-align: center;
    padding: 30px 16px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(58,42,26,.08);
}

.iy-stat .num {
    font-size: 42px;
    font-weight: 800;
    color: var(--iy-gold);
    line-height: 1;
}

.iy-stat .lbl {
    margin-top: 8px;
    color: #5d4d3a;
    font-weight: 600;
}

/* ==========  TESTIMONIALS  ========== */
.iy-testi {
    background: #fff;
    border-radius: 18px;
    padding: 34px;
    box-shadow: 0 10px 30px rgba(58,42,26,.08);
    position: relative;
}

.iy-testi::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    top: 24px;
    right: 30px;
    font-size: 42px;
    color: var(--iy-gold);
    opacity: .25;
}

.iy-testi p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a3d2b;
    margin-bottom: 22px;
}

.iy-testi .author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.iy-testi .author img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--iy-gold);
}

.iy-testi .author h5 { margin: 0; font-weight: 700; }
.iy-testi .author span { color: #8a7658; font-size: 13px; }

/* ==========  TOPBAR  ========== */
.iy-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 51;
    background: linear-gradient(90deg, #1a120a 0%, #2b1d0f 100%);
    color: #e8dfcf;
    font-size: 13px;
    border-bottom: 1px solid rgba(216,154,42,.18);
    transition: transform .35s ease, opacity .35s ease;
}

.iy-topbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.iy-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
    flex-wrap: wrap;
}

.iy-topbar-info {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.iy-topbar-info a,
.iy-topbar-info span {
    color: #e8dfcf;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .2s;
}

.iy-topbar-info a:hover { color: var(--iy-gold); }

.iy-topbar-info i { color: var(--iy-gold); font-size: 12px; }

.iy-topbar-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.iy-topbar-follow {
    color: #c9bda8;
    font-size: 12px;
    margin-right: 4px;
}

.iy-topbar-socials a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(216,154,42,.12);
    color: #e8dfcf;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all .2s;
    text-decoration: none;
}

.iy-topbar-socials a:hover {
    background: var(--iy-gold);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .iy-topbar { font-size: 12px; }
    .iy-topbar-inner { justify-content: center; padding: 6px 0; }
    .iy-topbar-info { gap: 14px; justify-content: center; }
    .iy-topbar-socials { display: none; }
}

/* ==========  HEADER  ========== */
.iy-header {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 8px 0;
    background: rgba(15,10,5,.35);
    backdrop-filter: blur(6px);
    transition: top .35s ease, background .3s ease, padding .3s ease, box-shadow .3s ease;
}

.iy-header.sticky {
    top: 0;
    background: rgba(26,18,10,.96);
    padding: 4px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,.35);
}

@media (max-width: 768px) {
    .iy-header { top: 34px; }
}

@keyframes iy-slide-down {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.iy-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.iy-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: .02em;
}

.iy-logo-img {
    height: 44px;
    width: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,.45);
    transition: transform .3s;
}

.iy-logo:hover .iy-logo-img { transform: scale(1.04); }

.iy-header.sticky .iy-logo-img { height: 36px; }

.iy-logo .mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--iy-gold), var(--iy-gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Montez', cursive;
    font-size: 26px;
    box-shadow: 0 6px 18px rgba(227,167,47,.4);
}

.iy-logo span.accent {
    color: var(--iy-gold);
    font-family: 'Montez', cursive;
    font-weight: 400;
    font-size: 20px;
    margin-left: 4px;
}

.iy-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.iy-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 6px 0;
    position: relative;
    transition: color .3s;
}

.iy-menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--iy-gold);
    transition: width .3s;
}

.iy-menu a:hover,
.iy-menu a.active { color: var(--iy-gold); }
.iy-menu a:hover::after,
.iy-menu a.active::after { width: 100%; }

.iy-nav-cta {
    background: var(--iy-gold);
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 999px;
}
.iy-nav-cta:hover { background: var(--iy-gold-dark); }
.iy-nav-cta::after { display: none !important; }

.iy-burger {
    display: none;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .iy-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 320px;
        height: 100vh;
        background: var(--iy-dark);
        flex-direction: column;
        padding: 80px 30px;
        transition: right .4s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,.3);
    }
    .iy-menu.open { right: 0; }
    .iy-burger { display: block; }
}

/* ==========  FOOTER  ========== */
.iy-footer {
    background: var(--iy-dark);
    color: #c9bda8;
    padding: 80px 0 0;
    position: relative;
}

.iy-footer::before {
    content: "";
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--iy-blue), var(--iy-gold), var(--iy-green));
    position: absolute;
    top: 0; left: 0; right: 0;
}

.iy-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}

@media (max-width: 991px) { .iy-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .iy-footer-grid { grid-template-columns: 1fr; } }

.iy-footer h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.iy-footer h5::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 38px; height: 2px;
    background: var(--iy-gold);
}

.iy-footer ul { list-style: none; padding: 0; margin: 0; }
.iy-footer li { margin-bottom: 10px; }
.iy-footer a { color: #c9bda8; text-decoration: none; transition: color .3s; }
.iy-footer a:hover { color: var(--iy-gold); padding-left: 6px; }

.iy-socials { display: flex; gap: 10px; margin-top: 18px; }
.iy-socials a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .3s;
}
.iy-socials a:hover {
    background: var(--iy-gold);
    color: #fff !important;
    padding-left: 0;
    transform: translateY(-3px);
}

.iy-newsletter {
    display: flex;
    margin-top: 14px;
    background: rgba(255,255,255,.06);
    border-radius: 999px;
    overflow: hidden;
    padding: 4px;
}
.iy-newsletter input {
    background: transparent;
    border: 0;
    color: #fff;
    padding: 10px 16px;
    flex: 1;
    outline: none;
}
.iy-newsletter input::placeholder { color: #867559; }
.iy-newsletter button {
    background: var(--iy-gold);
    color: #fff;
    border: 0;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
}

.iy-copy {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 60px;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: #8a7658;
}

.iy-copy a { color: var(--iy-gold); }

/* ==========  PAGE HERO (inner pages)  ========== */
.iy-page-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    margin-top: 0;
    padding-top: 120px;
    padding-bottom: 40px;
}
.iy-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,6,2,.7), rgba(10,6,2,.85));
}
.iy-page-hero > * { position: relative; z-index: 2; color: #fff; }
.iy-page-hero h1 { color: #fff; font-size: clamp(36px, 5vw, 58px); font-weight: 800; }
.iy-page-hero .crumb { color: rgba(255,255,255,.8); }
.iy-page-hero .crumb a { color: var(--iy-gold); text-decoration: none; }

/* Decorative pattern divider */
.iy-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 12px 0 20px;
    color: var(--iy-gold);
}
.iy-divider span {
    width: 30px; height: 2px; background: currentColor;
}
.iy-divider i { font-size: 16px; }

/* Contact form */
.iy-contact-form input,
.iy-contact-form textarea,
.iy-contact-form select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid #e7dcc6;
    background: #fff;
    margin-bottom: 16px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: all .3s;
}
.iy-contact-form input:focus,
.iy-contact-form textarea:focus,
.iy-contact-form select:focus {
    border-color: var(--iy-gold);
    box-shadow: 0 0 0 4px rgba(227,167,47,.15);
}

.iy-info-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(58,42,26,.07);
    margin-bottom: 16px;
}
.iy-info-box .icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--iy-gold), var(--iy-gold-dark));
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}
.iy-info-box h5 { margin: 0 0 4px; font-weight: 700; }
.iy-info-box p { margin: 0; color: #6a5a45; font-size: 14px; }
