:root {
    --st-deep-teal: #0F4C51;
    --st-mid-teal: #77A29B;
    --st-sand: #EBE9DD;
    --st-coral: #D19A78;
    --st-charcoal: #1A1A1A;
    --st-white: #FFFFFF;
    --st-light-gray: #F5F5F5;
    --st-border: #E5E5E5;

    --st-font-heading: 'Josefin Sans', serif;
    --st-font-body: 'Inter', sans-serif;

    --st-header-height: 80px;
    --st-header-height-mobile: 60px;
    --st-max-width: 1200px;
    --st-gutter: 24px;
    --st-gutter-mobile: 16px;
    --st-radius: 8px;
    --st-shadow: 0 2px 12px rgba(0,0,0,0.08);
    --st-shadow-hover: 0 8px 24px rgba(15,76,81,0.12);
    --st-transition: 0.3s ease;
}

/* ============================================
   SANTAI STAYS — Base Theme Styles
   ============================================ */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--st-font-body); font-size: 16px; line-height: 1.6; color: var(--st-charcoal); background: var(--st-white); /* overflow-x removed */ }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* Layout */
.st-main { padding-top: var(--st-header-height-mobile); }
.st-container { max-width: var(--st-max-width); margin: 0 auto; padding: 0 var(--st-gutter-mobile); }

/* Section titles */
.st-section-title { font-family: var(--st-font-heading); font-size: 1.4rem; font-weight: 400; letter-spacing: 8px; text-transform: uppercase; text-align: center; margin-bottom: 32px; color: var(--st-deep-teal); }
.st-section-title--coral { color: #B07A56; }

/* Buttons */
.st-btn { display: inline-block; padding: 12px 28px; font-family: var(--st-font-heading); font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; border-radius: var(--st-radius); cursor: pointer; transition: all var(--st-transition); text-decoration: none; border: none; }
.st-btn--coral { background: var(--st-coral); color: var(--st-white); }
.st-btn--coral:hover { background: #c08a68; }
.st-btn--teal { background: var(--st-deep-teal); color: var(--st-white); }
.st-btn--teal:hover { background: #0d3f43; }
.st-btn--outline { background: transparent; border: 2px solid var(--st-deep-teal); color: var(--st-deep-teal); }
.st-btn--outline:hover { background: var(--st-deep-teal); color: var(--st-white); }

/* Cards */
.st-card { background: var(--st-white); border-radius: var(--st-radius); box-shadow: var(--st-shadow); overflow: hidden; transition: box-shadow var(--st-transition), transform var(--st-transition); }
.st-card:hover { box-shadow: var(--st-shadow-hover); transform: translateY(-2px); }
.st-card__image { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.st-card__body { padding: 16px; }
.st-card__title { font-family: var(--st-font-heading); font-size: 1rem; font-weight: 600; color: var(--st-charcoal); text-align: center; }

/* Posts/Villas grid */
.st-posts-grid, .st-villas-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: var(--st-max-width); margin: 0 auto; padding: 0 var(--st-gutter-mobile); }

/* Footer */
.st-footer { background: var(--st-deep-teal); color: var(--st-white); padding: 48px var(--st-gutter-mobile) 24px; }
.st-footer__inner { max-width: var(--st-max-width); margin: 0 auto; display: flex; flex-direction: column; gap: 32px; }
.st-footer__logo img { height: 60px; width: auto; margin-bottom: 16px; }
.st-footer__text { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.6; max-width: 400px; }
.st-footer__nav ul { display: flex; flex-direction: column; gap: 12px; }
.st-footer__nav a { font-family: var(--st-font-heading); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.st-footer__nav a:hover { color: var(--st-coral); }
.st-footer__social { display: flex; gap: 16px; }
.st-footer__social a { color: rgba(255,255,255,0.8); }
.st-footer__social a:hover { color: var(--st-coral); }
.st-footer__contact { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.st-footer__contact a { color: var(--st-coral); }
.st-footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 32px; }

/* Utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.st-back-to-top { position: fixed !important; bottom: 20px; right: 20px; z-index: 999; }
