@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700&family=Source+Sans+3:wght@400;500;600&display=swap');

:root {
  --primary: #615B56;
  --secondary: #4E4945;
  --accent: #CB6E27;
  --accent-hover: #615B56;
  --surface: #F2F4F3;
  --taupe: #A9927D;
  --cream: #D9D0C1;
  --white: #FFFFFF;
  --muted: #908C89;
  --dark-text: #43403D;
  --font: 'Montserrat', sans-serif;
  --font-btn: 'Source Sans 3', sans-serif;
  --wide: 1170px;
  --header-wide: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 16px; font-weight: 300; line-height: 1.5; letter-spacing: 0.03em; color: var(--primary); background: var(--surface); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.sg-wrap { max-width: var(--wide); margin: 0 auto; padding: 0 20px; }
.sg-wrap-header { max-width: var(--header-wide); margin: 0 auto; padding: 0 20px; }

/* Header */
.sg-header { background: var(--surface); min-height: 90px; display: flex; align-items: center; position: sticky; top: 0; z-index: 900; border-bottom: 1px solid rgba(97,91,86,0.08); }
.sg-header-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.sg-logo img { height: 48px; }
.sg-nav { display: flex; align-items: center; gap: 30px; }
.sg-nav > a, .sg-nav-item > button {
  font-size: 14px; font-weight: 300; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--primary); transition: color 0.3s; position: relative; padding: 8px 0;
}
.sg-nav > a:hover, .sg-nav-item:hover > button { color: var(--accent); }
.sg-nav > a::after, .sg-nav-item > button::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
  background: var(--accent); transform: scaleX(0); transition: transform 0.3s;
}
.sg-nav > a:hover::after, .sg-nav-item:hover > button::after { transform: scaleX(1); }
.sg-nav-item { position: relative; }
.sg-nav-item > button { display: flex; align-items: center; gap: 4px; }
.sg-dropdown {
  position: absolute; top: 100%; left: 0; min-width: 240px; background: var(--white);
  border: 1px solid rgba(97,91,86,0.12); box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  padding: 12px 0; opacity: 0; visibility: hidden; transition: all 0.25s; pointer-events: none;
}
.sg-nav-item:hover .sg-dropdown { opacity: 1; visibility: visible; pointer-events: auto; }
.sg-dropdown a { display: block; padding: 10px 20px; font-size: 14px; font-weight: 300; text-transform: none; letter-spacing: 0.02em; transition: color 0.2s, background 0.2s; }
.sg-dropdown a:hover { color: var(--accent); background: var(--surface); }
.sg-menu-btn { display: none; font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); }

/* Mobile drawer */
.sg-drawer { position: fixed; inset: 0; z-index: 950; pointer-events: none; }
.sg-drawer.open { pointer-events: auto; }
.sg-drawer-bg { position: absolute; inset: 0; background: rgba(0,0,0,0.4); opacity: 0; transition: opacity 0.35s; }
.sg-drawer.open .sg-drawer-bg { opacity: 1; }
.sg-drawer-panel { position: absolute; top: 0; right: 0; width: min(360px, 90vw); height: 100%; background: var(--white); overflow-y: auto; transform: translateX(100%); transition: transform 0.4s; padding: 72px 24px 40px; }
.sg-drawer.open .sg-drawer-panel { transform: translateX(0); }
.sg-drawer-close { position: absolute; top: 20px; right: 20px; font-size: 28px; color: var(--primary); }
.sg-drawer-group { margin-bottom: 24px; }
.sg-drawer-group h3 { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.sg-drawer-group a { display: block; padding: 10px 0; font-size: 15px; border-bottom: 1px solid var(--surface); }

/* Buttons */
.sg-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 20px; background: var(--accent); color: var(--white);
  font-family: var(--font-btn); font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; border-radius: 5px;
  transition: background 0.3s;
}
.sg-btn:hover { background: var(--accent-hover); color: var(--white); }
.sg-btn-outline { background: transparent; border: 1px solid var(--accent); color: var(--accent); }
.sg-btn-outline:hover { background: var(--accent); color: var(--white); }
.sg-btn-muted { background: var(--muted); cursor: default; }
.sg-btn-muted:hover { background: var(--muted); }

/* Hero */
.sg-hero {
  position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--white); padding: 100px 20px 80px; overflow: hidden;
}
.sg-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sg-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.sg-hero-content { position: relative; z-index: 2; max-width: 820px; }
.sg-search {
  background: var(--white); border-radius: 5px; padding: 16px 20px; margin-bottom: 32px;
  display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 12px; align-items: end;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15); text-align: left;
}
.sg-search label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.sg-search input, .sg-search select {
  width: 100%; padding: 10px 12px; border: 1px solid #ddd; font-family: var(--font); font-size: 14px; color: var(--primary); background: var(--white);
}
.sg-hero-eyebrow { font-size: 12px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; opacity: 0.9; }
.sg-hero h1 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.15; margin-bottom: 20px; }
.sg-hero-desc { font-size: 16px; font-weight: 300; line-height: 1.65; opacity: 0.92; max-width: 680px; margin: 0 auto; }

/* Sections */
.sg-section { padding: 60px 0; }
.sg-section-cream { background: var(--cream); }
.sg-section-white { background: var(--white); }
.sg-section-taupe { background: var(--taupe); position: relative; }
.sg-section-title { font-size: 26px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; text-align: center; margin-bottom: 40px; color: var(--primary); }
.sg-eyebrow { font-size: 12px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 8px; }
.sg-subtitle { font-size: 16px; font-weight: 300; text-align: center; color: var(--muted); margin-bottom: 40px; }

/* Location cards */
.sg-loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sg-loc-card { background: var(--white); border-radius: 10px; overflow: hidden; transition: box-shadow 0.3s; }
.sg-loc-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.sg-loc-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px 10px 0 0; }
.sg-loc-body { padding: 20px; }
.sg-loc-body h3 { font-size: 18px; font-weight: 500; letter-spacing: 0.04em; margin-bottom: 4px; color: var(--primary); }
.sg-loc-area { font-size: 14px; font-weight: 300; color: var(--accent); margin-bottom: 12px; }
.sg-loc-body p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }

/* Icon boxes */
.sg-offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 960px; margin: 0 auto; }
.sg-offer-item { text-align: center; }
.sg-offer-icon {
  width: 60px; height: 60px; border-radius: 50%; background: var(--secondary);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  font-size: 24px; color: var(--white);
}
.sg-offer-item h3 { font-size: 18px; font-weight: 500; margin-bottom: 12px; color: var(--primary); }
.sg-offer-item p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Listing cards */
.sg-listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sg-listing-card { background: var(--white); border-radius: 10px; overflow: hidden; transition: box-shadow 0.3s; }
.sg-listing-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.sg-listing-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px 10px 0 0; }
.sg-listing-body { padding: 20px; }
.sg-listing-body h4 { font-size: 16px; font-weight: 500; margin-bottom: 8px; line-height: 1.35; }
.sg-listing-price { font-size: 14px; font-weight: 500; color: var(--accent); margin-bottom: 12px; }
.sg-listing-specs { display: flex; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.sg-listing-specs span { display: flex; align-items: center; gap: 4px; }

/* Reviews */
.sg-reviews { text-align: center; }
.sg-review-placeholder { font-size: 15px; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* Newsletter */
.sg-newsletter { position: relative; padding: 80px 20px; text-align: center; color: var(--white); overflow: hidden; }
.sg-newsletter-bg { position: absolute; inset: 0; background: var(--taupe); }
.sg-newsletter-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.sg-newsletter-content { position: relative; z-index: 2; max-width: 480px; margin: 0 auto; }
.sg-newsletter h2 { font-size: 26px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 24px; }
.sg-newsletter-form { display: flex; gap: 0; }
.sg-newsletter-form input { flex: 1; padding: 14px 16px; border: none; font-family: var(--font); font-size: 14px; border-radius: 5px 0 0 5px; }
.sg-newsletter-form button { border-radius: 0 5px 5px 0; }

/* Footer */
.sg-footer { background: var(--secondary); color: var(--surface); padding: 60px 0 32px; font-size: 14px; font-weight: 300; }
.sg-footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; max-width: 1500px; margin: 0 auto; padding: 0 20px; }
.sg-footer h4 { font-family: var(--font-btn); font-size: 16px; font-weight: 600; margin-bottom: 16px; color: var(--surface); }
.sg-footer a { display: block; padding: 5px 0; transition: color 0.2s; opacity: 0.85; }
.sg-footer a:hover { color: var(--accent); opacity: 1; }
.sg-footer-bottom { max-width: 1500px; margin: 40px auto 0; padding: 24px 20px 0; border-top: 1px solid rgba(242,244,243,0.15); font-size: 13px; opacity: 0.7; line-height: 1.7; }

/* Page */
.sg-page-hero { padding: 120px 0 60px; background: var(--cream); text-align: center; }
.sg-page-hero h1 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.sg-page-hero p { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: 15px; }
.sg-breadcrumb { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.sg-content { padding: 60px 0; background: var(--surface); }
.sg-content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sg-card { background: var(--white); border-radius: 10px; overflow: hidden; }
.sg-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.sg-card-body { padding: 20px; }
.sg-card-body h3 { font-size: 17px; font-weight: 500; margin-bottom: 8px; }
.sg-card-body p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.sg-notice { padding: 18px; border-left: 3px solid var(--accent); background: var(--cream); font-size: 14px; color: var(--muted); margin-top: 28px; }
.sg-form-thanks { display: none; color: var(--accent); margin-top: 12px; }

@media (max-width: 1024px) {
  .sg-loc-grid, .sg-listing-grid, .sg-offer-grid, .sg-footer-grid, .sg-content-grid { grid-template-columns: repeat(2, 1fr); }
  .sg-search { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .sg-nav { display: none; }
  .sg-menu-btn { display: block; }
  .sg-loc-grid, .sg-listing-grid, .sg-offer-grid, .sg-footer-grid, .sg-content-grid { grid-template-columns: 1fr; }
  .sg-search { grid-template-columns: 1fr; }
  .sg-newsletter-form { flex-direction: column; }
  .sg-newsletter-form input, .sg-newsletter-form button { border-radius: 5px; width: 100%; }
}
