:root {
  --bg: #f4f3ff;
  --bg-soft: #f9fafb;
  --bg-card: #ffffff;
  --bg-accent-soft: #eef2ff;
  --accent: #6366f1;
  --accent-2: #ec4899;
  --accent-soft: rgba(99, 102, 241, 0.12);
  --accent-strong: #4f46e5;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius-lg: 1.6rem;
  --radius-md: 1rem;
  --shadow-soft: 0 22px 70px rgba(15, 23, 42, 0.12);
  --transition: 0.2s ease-out;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, #e0f2fe 0, transparent 55%),
    radial-gradient(circle at 100% 100%, #fce7f3 0, transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.sg-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sg-main {
  min-height: 60vh;
}

/* Header */

.sg-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background:
    linear-gradient(to right, rgba(248, 250, 252, 0.96), rgba(238, 242, 255, 0.96));
  border-bottom: 1px solid rgba(209, 213, 219, 0.8);
}

.sg-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.sg-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.sg-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 15% 10%, #fef3c7 0, #f97316 28%, transparent 60%),
    radial-gradient(circle at 80% 90%, #e0f2fe 0, #6366f1 35%, #ec4899 75%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(79, 70, 229, 0.45);
}

.sg-logo-icon {
  position: relative;
  width: 22px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid #f9fafb;
  background: rgba(15, 23, 42, 0.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
}

.sg-logo-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #22c55e;
}

.sg-logo-dot-right {
  background: #f97316;
}

sg-logo-text {
  display: flex;
  flex-direction: column;
}

.sg-logo-title {
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sg-logo-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
}

.sg-nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.sg-nav a {
  color: #4b5563;
  position: relative;
  padding: 0.2rem 0;
}

.sg-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width var(--transition);
}

.sg-nav a:hover {
  color: #111827;
}

.sg-nav a:hover::after {
  width: 100%;
}

.sg-nav-toggle {
  display: none;
  background: #111827;
  border-radius: 999px;
  border: 0;
  padding: 0.3rem 0.55rem;
  cursor: pointer;
}

.sg-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #f9fafb;
  margin: 3px 0;
}

/* Hero */

.sg-hero {
  padding: 2.7rem 0 2rem;
}

.sg-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.7rem;
  align-items: center;
}

.sg-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.68rem;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.sg-hero-copy h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(2.1rem, 3.2vw, 2.7rem);
  letter-spacing: 0.01em;
}

.sg-hero-lead {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.sg-booking-bar {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1.4rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.1rem 1.1rem;
  margin-bottom: 0.9rem;
}

.sg-booking-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.sg-booking-bar label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: #4b5563;
}

.sg-booking-bar input,
.sg-booking-bar select {
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  padding: 0.5rem 0.7rem;
  font: inherit;
  background: #f9fafb;
  color: #111827;
}

.sg-booking-bar input:focus,
.sg-booking-bar select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.sg-booking-note {
  margin: 0.1rem 0 0;
  font-size: 0.78rem;
  color: #6b7280;
}

.sg-hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.sg-hero-list li + li {
  margin-top: 0.2rem;
}

.sg-hero-media {
  display: grid;
  align-items: stretch;
}

.sg-hero-main-card {
  border-radius: 1.6rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, #c7d2fe, #a5b4fc);
  border: 1px solid rgba(199, 210, 254, 0.9);
  box-shadow: var(--shadow-soft);
}

.sg-hero-main-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.sg-hero-stack {
  display: grid;
  gap: 0.7rem;
}

.sg-hero-mini {
  border-radius: 1.3rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: var(--shadow-soft);
  font-size: 0.78rem;
}

.sg-hero-mini img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.sg-hero-mini figcaption {
  padding: 0.4rem 0.7rem 0.6rem;
  color: #6b7280;
}

/* Sections */

.sg-section {
  padding: 3rem 0;
}

.sg-section-alt {
  background: radial-gradient(circle at top, #eef2ff 0, transparent 60%);
}

.sg-section-header {
  margin-bottom: 1.5rem;
}

.sg-section-header h1,
.sg-section-header h2 {
  margin: 0 0 0.4rem;
  font-weight: 600;
}

.sg-section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.sg-section-header-inline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

h1 {
  font-size: clamp(2rem, 3vw, 2.4rem);
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 1.05rem;
}

/* Buttons */

.sg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.55rem 1.6rem;
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.sg-btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #f9fafb;
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.5);
}

.sg-btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* Grids & cards */

.sg-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.7rem;
}

.sg-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.sg-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.sg-grid-align-top {
  align-items: flex-start;
}

.sg-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 1.2rem;
  font-size: 0.9rem;
}

.sg-card-soft {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.96));
}

.sg-card h2,
.sg-card h3 {
  margin-top: 0;
}

.sg-card p {
  margin: 0.35rem 0 0.8rem;
  color: var(--muted);
}

.sg-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.sg-room-photo img {
  margin-top: 0.7rem;
  border-radius: var(--radius-md);
  height: 160px;
  object-fit: cover;
}

/* Gallery */

.sg-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.sg-gallery-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  font-size: 0.8rem;
}

.sg-gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.sg-gallery-item figcaption {
  padding: 0.4rem 0.7rem 0.6rem;
  color: #6b7280;
}

/* Map */

.sg-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 1.2rem;
  box-shadow: var(--shadow-soft);
  background: #e5e7eb;
}

.sg-map-large iframe {
  height: 260px;
}

/* Links */

.sg-link-inline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-strong);
}

.sg-link-inline::after {
  content: "↗";
  margin-left: 0.25rem;
}

/* Contact */

.sg-contact-form {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem 1.3rem;
  font-size: 0.9rem;
}

.sg-form-row {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.sg-form-row-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sg-contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.7rem;
  font-size: 0.84rem;
}

.sg-contact-form input,
.sg-contact-form select,
.sg-contact-form textarea {
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  padding: 0.5rem 0.8rem;
  font: inherit;
  background: #f9fafb;
  color: #111827;
}

.sg-contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.sg-contact-form input:focus,
.sg-contact-form select:focus,
.sg-contact-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.sg-form-note {
  margin: 0 0 0.7rem;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Footer */

.sg-footer {
  margin-top: 2.7rem;
  background: #111827;
  color: #e5e7eb;
}

.sg-footer-main {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 2rem 0 1.3rem;
  font-size: 0.9rem;
}

.sg-footer-col h3,
.sg-footer-col h4 {
  margin-top: 0;
}

.sg-footer-col p {
  margin: 0 0 0.4rem;
  color: #9ca3af;
}

.sg-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sg-footer-col li + li {
  margin-top: 0.25rem;
}

.sg-footer a {
  color: #e5e7eb;
}

.sg-footer-bottom {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  text-align: center;
  padding: 0.8rem 0 1.2rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Cookie banner */

.sg-cookie {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  max-width: 980px;
  width: 100%;
  background: #111827;
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.82rem;
  z-index: 50;
}

.sg-cookie-text p {
  margin: 0 0 0.35rem;
  color: #e5e7eb;
}

.sg-cookie-text a {
  color: #a5b4fc;
  text-decoration: underline;
}

.sg-cookie-actions {
  display: flex;
  gap: 0.45rem;
  flex-shrink: 0;
  align-items: center;
}

.sg-cookie-btn {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.38rem 1.1rem;
  font-size: 0.78rem;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

.sg-cookie-btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #f9fafb;
}

.sg-cookie-btn-secondary {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(156, 163, 175, 0.9);
}

.sg-cookie-btn-secondary:hover {
  background: rgba(31, 41, 55, 0.9);
}

.sg-cookie--hidden {
  display: none !important;
}

/* General */

ul {
  padding-left: 1.1rem;
}

.sg-section p {
  margin-bottom: 0.7rem;
}
