*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --mustard: #E8A317;
  --sienna: #A0522D;
  --olive: #6B8E23;
  --cream: #FFFDD0;
  --cream-deep: #F5EBC6;
  --ink: #3A2E1F;
  --paper: #FAF6E3;
  --shadow: rgba(58, 46, 31, 0.18);
  --border: #C9A961;
  --serif: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --sans: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.25;
  color: var(--sienna);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p { margin-bottom: 1rem; }

a {
  color: var(--sienna);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover { color: var(--mustard); }

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 3px double var(--border);
  box-shadow: 0 2px 20px var(--shadow);
}

.nav-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  gap: 1rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.nav-links.left { justify-content: flex-end; }
.nav-links.right { justify-content: flex-start; }

.nav-links a {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.4rem 0.2rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--mustard);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
  left: 0;
}

.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: var(--sienna);
}

.logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sienna);
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.logo .accent { color: var(--mustard); }

.logo small {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 400;
  margin-top: 0.15rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--border);
  border-radius: 4px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--sienna);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(rgba(58, 46, 31, 0.55), rgba(58, 46, 31, 0.65)),
    url('https://picsum.photos/seed/hotel-surya-agung-hero/1920/1080') center / cover no-repeat;
  color: var(--cream);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 1.5rem;
  border: 2px solid rgba(255, 253, 208, 0.3);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 1.8rem;
  border: 1px solid rgba(232, 163, 23, 0.25);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
  animation: heroFade 1.2s ease-out;
}

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

.hero h1 {
  color: var(--cream);
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 2rem;
  color: rgba(255, 253, 208, 0.95);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border: 2px solid var(--mustard);
  background: transparent;
  color: var(--mustard);
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--mustard);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
}

.btn:hover {
  color: var(--ink);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(232, 163, 23, 0.4);
}

.btn:hover::before { transform: scaleX(1); }

.btn-ghost {
  border-color: var(--cream);
  color: var(--cream);
}

.btn-ghost::before { background: var(--cream); }
.btn-ghost:hover { color: var(--sienna); }

.btn-sienna {
  border-color: var(--sienna);
  color: var(--sienna);
}
.btn-sienna::before { background: var(--sienna); }
.btn-sienna:hover { color: var(--cream); }

.btn-olive {
  border-color: var(--olive);
  color: var(--olive);
}
.btn-olive::before { background: var(--olive); }
.btn-olive:hover { color: var(--cream); }

/* ============ SECTIONS ============ */
.section {
  padding: 4.5rem 0;
  position: relative;
}

.section-alt { background: var(--cream); }
.section-olive { background: var(--olive); color: var(--cream); }
.section-olive h2, .section-olive h3 { color: var(--cream); }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 0.8rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--mustard);
}

.section-title p {
  max-width: 600px;
  margin: 1rem auto 0;
  color: var(--ink);
  opacity: 0.8;
}

/* ============ DECORATIVE DIVIDER ============ */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
  background: var(--paper);
}

.divider::before,
.divider::after {
  content: '';
  height: 1px;
  width: 120px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.divider .dot {
  width: 10px;
  height: 10px;
  background: var(--mustard);
  border: 2px solid var(--sienna);
  border-radius: 50%;
  flex-shrink: 0;
}

.divider .icon {
  font-size: 1.2rem;
  color: var(--sienna);
}

/* ============ CARDS ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 4px;
  pointer-events: none;
  z-index: 1;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px var(--shadow);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.card-body h3 {
  margin-bottom: 0.6rem;
  color: var(--sienna);
}

.card-body p {
  font-size: 0.95rem;
  color: var(--ink);
  opacity: 0.85;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mustard);
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.card-link:hover {
  border-bottom-color: var(--mustard);
}

/* ============ CONTENT / TWO-COLUMN ============ */
.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.content-row.reverse .content-text { order: 2; }

.content-text h2 { margin-bottom: 1rem; }

.content-text p { margin-bottom: 1rem; }

.content-image {
  border-radius: 10px;
  border: 3px solid var(--border);
  box-shadow: 0 8px 25px var(--shadow);
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

.feature-list li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
}

.feature-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--mustard);
  font-size: 1rem;
}

/* ============ CONTACT BLOCK ============ */
.contact-block {
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem;
  position: relative;
}

.contact-block::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 6px;
  pointer-events: none;
}

.contact-block h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

address {
  font-style: normal;
  line-height: 2;
  font-size: 1.05rem;
}

address strong {
  display: block;
  font-family: var(--serif);
  color: var(--sienna);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

address a {
  color: var(--ink);
  border-bottom: 1px dotted var(--border);
}

address a:hover { color: var(--mustard); }

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--border);
}

.contact-info p:last-child { border-bottom: none; }

.contact-info .label {
  font-weight: 700;
  color: var(--sienna);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  min-width: 80px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 3rem 0 1.5rem;
  border-top: 4px double var(--mustard);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--mustard);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer