/* Sunrise Wellness Therapy — exact homepage design language */
html {
  scroll-behavior: smooth;
}

body.swt-seo-template {
  margin: 0;
  background: #faf8f3;
}

body.swt-menu-open {
  overflow: hidden;
}

.swt-seo,
.swt-seo * {
  box-sizing: border-box;
}

.swt-seo {
  --teal: #3a8a8c;
  --teal-dark: #2d6e70;
  --teal-light: #e8f4f4;
  --gold: #d4a843;
  --gold-warm: #c4932e;
  --gold-light: #f5ecd7;
  --navy: #1e2a4a;
  --navy-light: #2c3d6b;
  --cream: #faf8f3;
  --cream-dark: #f0ece3;
  --white: #fff;
  --text: #2a2a2a;
  --text-light: #5a5a5a;
  --line: rgba(30, 42, 74, .12);
  --shadow-sm: 0 2px 8px rgba(30, 42, 74, .06);
  --shadow-md: 0 8px 30px rgba(30, 42, 74, .1);
  --shadow-lg: 0 20px 60px rgba(30, 42, 74, .14);
  --transition: .3s ease;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", Arial, sans-serif;
  width: 100%;
  overflow: hidden;
  color: var(--text);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.swt-seo h1,
.swt-seo h2,
.swt-seo h3,
.swt-seo h4,
.swt-seo p,
.swt-seo ul,
.swt-seo ol,
.swt-seo figure {
  margin: 0;
}

.swt-seo h1,
.swt-seo h2,
.swt-seo h3,
.swt-seo h4 {
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.13;
}

.swt-seo a {
  color: inherit;
  text-decoration: none;
}

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

.swt-seo button,
.swt-seo a {
  -webkit-tap-highlight-color: transparent;
}

.swt-seo :focus-visible,
.swt-skip-link:focus {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.swt-skip-link {
  position: fixed;
  z-index: 10001;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-180%);
  border-radius: 8px;
  color: #fff;
  background: #1e2a4a;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.swt-skip-link:focus {
  transform: translateY(0);
}

.swt-inner {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
}

.swt-narrow {
  width: min(880px, calc(100% - 80px));
}

.swt-section {
  width: 100%;
  padding: 100px 0;
}

.swt-header {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.swt-header h2 {
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
}

.swt-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
}

.swt-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2.8px;
  line-height: 1.4;
  text-transform: uppercase;
}

.swt-tag.gold {
  color: var(--gold);
}

.swt-dark,
.swt-dark h1,
.swt-dark h2,
.swt-dark h3,
.swt-dark p {
  color: var(--white);
}

/* Header */
.swt-site-header {
  position: sticky;
  z-index: 9999;
  top: 0;
  width: 100%;
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(30, 42, 74, .18);
}

body.admin-bar .swt-site-header {
  top: 32px;
}

.swt-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1280px, calc(100% - 80px));
  min-height: 82px;
  margin: 0 auto;
  gap: 24px;
}

.swt-logo {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.swt-logo img {
  width: auto;
  max-width: 190px;
  max-height: 62px;
  padding: 9px 11px;
  border-radius: 12px;
  background: #fff;
  object-fit: contain;
}

.swt-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
}

.swt-nav-links a {
  padding: 10px 14px;
  border-radius: 40px;
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.swt-nav-links a:hover {
  background: rgba(255, 255, 255, .12);
}

.swt-nav-links a.swt-nav-cta {
  margin-left: 7px;
  padding-right: 22px;
  padding-left: 22px;
  background: var(--gold);
}

.swt-nav-links a.swt-nav-cta:hover {
  background: var(--gold-warm);
  transform: translateY(-1px);
}

.swt-menu-toggle {
  display: none;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 9px;
  color: #fff;
  background: transparent;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  gap: 10px;
}

.swt-menu-toggle i,
.swt-menu-toggle i::before,
.swt-menu-toggle i::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}

.swt-menu-toggle i {
  position: relative;
}

.swt-menu-toggle i::before,
.swt-menu-toggle i::after {
  position: absolute;
  left: 0;
  content: "";
}

.swt-menu-toggle i::before {
  top: -6px;
}

.swt-menu-toggle i::after {
  top: 6px;
}

.swt-menu-toggle[aria-expanded="true"] i {
  background: transparent;
}

.swt-menu-toggle[aria-expanded="true"] i::before {
  top: 0;
  transform: rotate(45deg);
}

.swt-menu-toggle[aria-expanded="true"] i::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */
.swt-seo-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-light) 37%, var(--teal-dark) 74%, var(--teal) 100%);
}

.swt-seo-hero::before,
.swt-seo-hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.swt-seo-hero::before {
  top: -260px;
  right: -200px;
  width: 720px;
  height: 720px;
  background: rgba(212, 168, 67, .09);
}

.swt-seo-hero::after {
  bottom: -240px;
  left: -170px;
  width: 540px;
  height: 540px;
  background: rgba(255, 255, 255, .055);
}

.swt-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  align-items: center;
  width: min(1200px, calc(100% - 80px));
  min-height: 690px;
  margin: 0 auto;
  padding: 85px 0 90px;
  gap: 76px;
}

.swt-hero-copy {
  max-width: 760px;
}

.swt-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .72);
  font-size: .76rem;
  font-weight: 500;
  gap: 9px;
}

.swt-breadcrumbs a {
  color: rgba(255, 255, 255, .82);
  transition: color var(--transition);
}

.swt-breadcrumbs a:hover {
  color: #fff;
}

.swt-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 23px;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .09);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.3;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.swt-badge::before {
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 168, 67, .16);
  content: "";
}

.swt-hero-copy h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(3.15rem, 6vw, 5.35rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: .99;
}

.swt-hero-copy > p {
  max-width: 680px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  font-weight: 300;
  line-height: 1.75;
}

.swt-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 34px;
  gap: 14px;
}

.swt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.swt-btn:hover {
  transform: translateY(-2px);
}

.swt-btn-gold {
  color: #fff;
  background: var(--gold);
  box-shadow: 0 10px 28px rgba(19, 25, 43, .2);
}

.swt-btn-gold:hover {
  color: #fff;
  background: var(--gold-warm);
  box-shadow: 0 13px 34px rgba(19, 25, 43, .26);
}

.swt-btn-outline {
  border-color: rgba(255, 255, 255, .7);
  color: #fff;
  background: transparent;
}

.swt-btn-outline:hover {
  border-color: #fff;
  color: var(--navy);
  background: #fff;
}

.swt-profile-card {
  position: relative;
  max-width: 380px;
  margin-left: auto;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 26px;
  background: rgba(255, 255, 255, .1);
  text-align: center;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.swt-profile-card::before {
  position: absolute;
  z-index: -1;
  top: -12px;
  right: -12px;
  bottom: 14px;
  left: 14px;
  border: 1px solid rgba(212, 168, 67, .34);
  border-radius: 28px;
  content: "";
}

.swt-profile-photo {
  width: 164px;
  height: 164px;
  margin: 0 auto 20px;
  border: 6px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 14px 34px rgba(13, 19, 35, .24);
}

.swt-profile-card h2 {
  margin-bottom: 3px;
  color: #fff;
  font-size: 2rem;
}

.swt-role {
  margin-bottom: 20px;
  color: var(--gold-light);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.swt-quals {
  display: grid;
  padding: 0;
  list-style: none;
  text-align: left;
  gap: 9px;
}

.swt-quals li {
  position: relative;
  padding: 8px 10px 8px 29px;
  border-radius: 8px;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .07);
  font-size: .77rem;
  font-weight: 500;
  line-height: 1.45;
}

.swt-quals li::before {
  position: absolute;
  top: 13px;
  left: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

/* Stats */
.swt-stats {
  position: relative;
  z-index: 4;
  margin-top: -36px;
}

.swt-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1050px, calc(100% - 80px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.swt-stat {
  position: relative;
  padding: 25px 20px;
  text-align: center;
}

.swt-stat:not(:last-child)::after {
  position: absolute;
  top: 25%;
  right: 0;
  width: 1px;
  height: 50%;
  background: var(--line);
  content: "";
}

.swt-stat strong,
.swt-stat span {
  display: block;
}

.swt-stat strong {
  color: var(--teal);
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.1;
}

.swt-stat span {
  margin-top: 5px;
  color: var(--text-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .8px;
  line-height: 1.35;
  text-transform: uppercase;
}

/* Article */
.swt-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 74px;
}

.swt-article {
  min-width: 0;
}

.swt-copy-section {
  position: relative;
  padding: 0 0 54px 62px;
}

.swt-copy-section + .swt-copy-section {
  padding-top: 54px;
  border-top: 1px solid var(--line);
}

.swt-section-number {
  position: absolute;
  top: 2px;
  left: 0;
  color: rgba(58, 138, 140, .23);
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1;
}

.swt-copy-section + .swt-copy-section .swt-section-number {
  top: 58px;
}

.swt-copy-section h2 {
  margin-bottom: 21px;
  font-size: clamp(2rem, 3.3vw, 2.85rem);
}

.swt-copy-section p {
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.86;
}

.swt-copy-section p + p {
  margin-top: 18px;
}

.swt-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
  gap: 12px 18px;
}

.swt-check-list li {
  position: relative;
  min-height: 46px;
  padding: 11px 13px 11px 38px;
  border: 1px solid rgba(58, 138, 140, .13);
  border-radius: 10px;
  color: var(--navy);
  background: rgba(232, 244, 244, .54);
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.5;
}

.swt-check-list li::before {
  position: absolute;
  top: 16px;
  left: 15px;
  width: 10px;
  height: 6px;
  transform: rotate(-45deg);
  border-bottom: 2px solid var(--teal);
  border-left: 2px solid var(--teal);
  content: "";
}

.swt-scope-note {
  margin-top: 12px;
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  background: var(--gold-light);
}

.swt-scope-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: .94rem;
  font-weight: 800;
}

.swt-scope-note p {
  color: #5b5548;
  font-size: .87rem;
  line-height: 1.65;
}

.swt-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 19px;
}

.swt-book-card,
.swt-trust-card {
  border-radius: 19px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.swt-book-card {
  padding: 30px;
  border-top: 5px solid var(--gold);
}

.swt-book-card h2 {
  margin-bottom: 10px;
  font-size: 2.1rem;
}

.swt-book-card > p {
  color: var(--text-light);
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.65;
}

.swt-price {
  display: flex;
  align-items: baseline;
  margin: 22px 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 8px;
}

.swt-price strong {
  color: var(--teal);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1;
}

.swt-price span {
  color: var(--text-light);
  font-size: .78rem;
  font-weight: 600;
}

.swt-book-card .swt-btn {
  width: 100%;
  margin-bottom: 17px;
}

.swt-text-link {
  display: block;
  padding: 7px 0;
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: .79rem;
  font-weight: 700;
  line-height: 1.45;
}

.swt-text-link:hover {
  color: var(--teal);
}

.swt-trust-card {
  padding: 26px 28px;
  color: #fff;
  background: var(--navy);
}

.swt-trust-card h3 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 1.55rem;
}

.swt-trust-card ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 9px;
}

.swt-trust-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, .78);
  font-size: .79rem;
  font-weight: 500;
  line-height: 1.5;
}

.swt-trust-card li::before {
  position: absolute;
  top: .55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

/* Internal page network */
.swt-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  gap: 18px;
}

.swt-copy-section .swt-link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.swt-link-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.swt-link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(58, 138, 140, .4);
  box-shadow: var(--shadow-md);
}

.swt-link-card > span {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: .66rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.swt-link-card > strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.swt-link-card > p,
.swt-copy-section .swt-link-card > p {
  display: -webkit-box;
  margin-top: 11px;
  overflow: hidden;
  color: var(--text-light);
  font-size: .78rem;
  font-weight: 300;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.swt-link-card > em {
  margin-top: auto;
  padding-top: 15px;
  color: var(--teal-dark);
  font-size: .75rem;
  font-style: normal;
  font-weight: 800;
}

.swt-link-card > em b {
  display: inline-block;
  margin-left: 4px;
  transition: transform var(--transition);
}

.swt-link-card:hover > em b {
  transform: translateX(4px);
}

/* Real room gallery */
.swt-room-section {
  background: #fff;
}

.swt-room-gallery {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: repeat(2, 255px);
  gap: 18px;
}

.swt-room-gallery figure {
  position: relative;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 17px;
  background: var(--cream-dark);
  box-shadow: var(--shadow-md);
}

.swt-room-gallery figure.swt-room-main {
  grid-row: 1 / 3;
}

.swt-room-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.swt-room-gallery figure:hover img {
  transform: scale(1.025);
}

.swt-room-gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 13px;
  border-radius: 8px;
  color: #fff;
  background: rgba(30, 42, 74, .86);
  font-size: .71rem;
  font-weight: 700;
  line-height: 1.4;
  backdrop-filter: blur(7px);
}

/* About */
.swt-about-band {
  background: var(--cream-dark);
}

.swt-about-grid {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  align-items: center;
  gap: 70px;
}

.swt-about-grid > img {
  width: 340px;
  height: 400px;
  border: 9px solid #fff;
  border-radius: 20px;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow-lg);
}

.swt-about-grid h2 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 4.3vw, 3.55rem);
}

.swt-about-grid p {
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.85;
}

.swt-about-grid p + p {
  margin-top: 17px;
}

/* FAQs */
.swt-faq-section {
  background: var(--teal-light);
}

.swt-faq-list {
  display: grid;
  gap: 13px;
}

.swt-faq {
  overflow: hidden;
  border: 1px solid rgba(58, 138, 140, .14);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.swt-faq summary {
  position: relative;
  padding: 22px 62px 22px 25px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}

.swt-faq summary::-webkit-details-marker {
  display: none;
}

.swt-faq summary span,
.swt-faq summary span::after {
  position: absolute;
  width: 15px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal);
  content: "";
}

.swt-faq summary span {
  top: 30px;
  right: 27px;
}

.swt-faq summary span::after {
  transform: rotate(90deg);
  transition: transform var(--transition);
}

.swt-faq[open] summary span::after {
  transform: rotate(0deg);
}

.swt-faq > div {
  padding: 0 25px 23px;
}

.swt-faq > div p {
  max-width: 730px;
  color: var(--text-light);
  font-size: .94rem;
  font-weight: 300;
  line-height: 1.75;
}

/* Related, crisis and final action */
.swt-related-section {
  background: #fff;
}

.swt-crisis {
  padding: 31px 0;
  color: #fff;
  background: #3c4253;
}

.swt-crisis-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  align-items: center;
  gap: 50px;
}

.swt-crisis strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: .94rem;
  font-weight: 800;
}

.swt-crisis p {
  color: rgba(255, 255, 255, .76);
  font-size: .78rem;
  line-height: 1.6;
}

.swt-crisis-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.swt-crisis-links a,
.swt-crisis-links span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  line-height: 1.3;
}

.swt-crisis-links a:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

.swt-final-cta {
  background: var(--cream);
}

.swt-cta-box {
  position: relative;
  overflow: hidden;
  padding: 76px 50px;
  border-radius: 25px;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.swt-cta-box::before,
.swt-cta-box::after {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .055);
  content: "";
}

.swt-cta-box::before {
  top: -150px;
  right: -120px;
  width: 360px;
  height: 360px;
}

.swt-cta-box::after {
  bottom: -170px;
  left: -100px;
  width: 330px;
  height: 330px;
}

.swt-cta-box > * {
  position: relative;
  z-index: 1;
}

.swt-cta-box h2 {
  max-width: 760px;
  margin: 0 auto 17px;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.swt-cta-box > p {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .82);
  font-weight: 300;
}

.swt-cta-box .swt-buttons {
  justify-content: center;
}

/* Footer */
.swt-footer {
  padding: 78px 0 0;
  color: #fff;
  background: var(--navy);
}

.swt-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .75fr .8fr 1fr;
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding-bottom: 58px;
  gap: 48px;
}

.swt-footer-logo {
  width: auto;
  max-width: 210px;
  max-height: 90px;
  margin-bottom: 21px;
  padding: 11px;
  border-radius: 12px;
  background: #fff;
  object-fit: contain;
}

.swt-footer-grid > div:first-child p {
  max-width: 310px;
  color: rgba(255, 255, 255, .62);
  font-size: .83rem;
  font-weight: 300;
  line-height: 1.7;
}

.swt-footer h2 {
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--font-body);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.swt-footer ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 10px;
}

.swt-footer li,
.swt-footer li a {
  color: rgba(255, 255, 255, .62);
  font-size: .78rem;
  font-weight: 400;
  line-height: 1.55;
}

.swt-footer li a {
  transition: color var(--transition);
}

.swt-footer li a:hover {
  color: #fff;
}

.swt-contact-list li a {
  overflow-wrap: anywhere;
}

.swt-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .48);
  font-size: .69rem;
  font-weight: 500;
  gap: 20px;
}

@media (max-width: 1100px) {
  .swt-nav-inner {
    width: min(100% - 48px, 1280px);
  }

  .swt-nav-links a {
    padding: 9px 9px;
    font-size: .77rem;
  }

  .swt-nav-links a.swt-nav-cta {
    padding-right: 16px;
    padding-left: 16px;
  }

  .swt-hero-grid {
    gap: 45px;
  }

  .swt-content-layout {
    gap: 45px;
  }
}

@media (max-width: 960px) {
  body.admin-bar .swt-site-header {
    top: 46px;
  }

  .swt-menu-toggle {
    display: inline-flex;
  }

  .swt-nav-links {
    position: fixed;
    z-index: 9998;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 26px 24px 40px;
    overflow-y: auto;
    background: var(--navy);
    gap: 7px;
  }

  body.admin-bar .swt-nav-links {
    top: 128px;
  }

  .swt-nav-links.is-open {
    display: flex;
  }

  .swt-nav-links a,
  .swt-nav-links a.swt-nav-cta {
    width: 100%;
    margin: 0;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: .96rem;
    text-align: center;
  }

  .swt-nav-links a.swt-nav-cta {
    margin-top: 8px;
  }

  .swt-hero-grid {
    grid-template-columns: 1fr;
    padding: 80px 0 100px;
    gap: 54px;
  }

  .swt-profile-card {
    width: min(100%, 520px);
    max-width: none;
    margin: 0 auto;
  }

  .swt-content-layout {
    grid-template-columns: 1fr;
  }

  .swt-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .swt-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .swt-about-grid {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 45px;
  }

  .swt-about-grid > img {
    width: 280px;
    height: 350px;
  }

  .swt-crisis-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .swt-crisis-links {
    justify-content: flex-start;
  }

  .swt-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 782px) {
  body.admin-bar .swt-site-header {
    top: 46px;
  }
}

@media (max-width: 720px) {
  .swt-seo {
    font-size: 16px;
  }

  .swt-inner,
  .swt-narrow,
  .swt-nav-inner,
  .swt-hero-grid,
  .swt-footer-grid,
  .swt-footer-bottom {
    width: min(100% - 36px, 1200px);
  }

  .swt-section {
    padding: 72px 0;
  }

  .swt-nav-inner {
    min-height: 74px;
  }

  .swt-logo img {
    max-width: 153px;
    max-height: 56px;
    padding: 8px;
  }

  .swt-nav-links {
    top: 74px;
  }

  body.admin-bar .swt-nav-links {
    top: 120px;
  }

  .swt-seo-hero,
  .swt-hero-grid {
    min-height: auto;
  }

  .swt-hero-grid {
    padding: 60px 0 86px;
  }

  .swt-breadcrumbs {
    margin-bottom: 23px;
  }

  .swt-badge {
    margin-bottom: 20px;
  }

  .swt-hero-copy h1 {
    font-size: clamp(2.75rem, 13.6vw, 4.35rem);
  }

  .swt-profile-card {
    padding: 27px 23px;
  }

  .swt-profile-photo {
    width: 142px;
    height: 142px;
  }

  .swt-stats {
    margin-top: -26px;
  }

  .swt-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    width: min(100% - 36px, 1050px);
  }

  .swt-stat {
    padding: 21px 12px;
  }

  .swt-stat:nth-child(2)::after {
    display: none;
  }

  .swt-stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .swt-content-layout {
    gap: 42px;
  }

  .swt-copy-section,
  .swt-copy-section + .swt-copy-section {
    padding-right: 0;
    padding-left: 0;
  }

  .swt-section-number,
  .swt-copy-section + .swt-copy-section .swt-section-number {
    position: static;
    margin-bottom: 9px;
    font-size: 1.45rem;
  }

  .swt-copy-section {
    padding-bottom: 43px;
  }

  .swt-copy-section + .swt-copy-section {
    padding-top: 43px;
  }

  .swt-copy-section h2 {
    font-size: 2.15rem;
  }

  .swt-check-list,
  .swt-copy-section .swt-link-grid,
  .swt-link-grid {
    grid-template-columns: 1fr;
  }

  .swt-link-card {
    min-height: 0;
  }

  .swt-sidebar {
    grid-template-columns: 1fr;
  }

  .swt-book-card,
  .swt-trust-card {
    padding: 25px;
  }

  .swt-room-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 290px);
  }

  .swt-room-gallery figure.swt-room-main {
    grid-row: auto;
  }

  .swt-about-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .swt-about-grid > img {
    width: 100%;
    height: min(110vw, 520px);
  }

  .swt-faq summary {
    padding: 20px 52px 20px 20px;
    font-size: 1.17rem;
  }

  .swt-faq summary span {
    top: 28px;
    right: 21px;
  }

  .swt-faq > div {
    padding: 0 20px 21px;
  }

  .swt-cta-box {
    padding: 58px 24px;
    border-radius: 19px;
  }

  .swt-footer {
    padding-top: 62px;
  }

  .swt-footer-grid {
    grid-template-columns: 1fr;
    padding-bottom: 42px;
    gap: 34px;
  }

  .swt-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
    gap: 5px;
  }
}

@media (max-width: 480px) {
  body.admin-bar .swt-site-header {
    top: 0;
  }

  body.admin-bar .swt-nav-links {
    top: 74px;
  }

  .swt-menu-toggle span {
    display: none;
  }

  .swt-menu-toggle {
    min-width: 46px;
    justify-content: center;
  }

  .swt-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .swt-btn {
    width: 100%;
  }

  .swt-profile-card::before {
    display: none;
  }

  .swt-stats-grid {
    border-radius: 14px;
  }

  .swt-stat strong {
    font-size: 1.55rem;
  }

  .swt-stat span {
    font-size: .62rem;
  }

  .swt-room-gallery {
    grid-template-rows: repeat(3, 245px);
  }

  .swt-crisis-links {
    align-items: stretch;
    flex-direction: column;
  }

  .swt-crisis-links a,
  .swt-crisis-links span {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .swt-seo *,
  .swt-seo *::before,
  .swt-seo *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .swt-site-header,
  .swt-sidebar,
  .swt-room-section,
  .swt-related-section,
  .swt-crisis,
  .swt-final-cta,
  .swt-footer,
  .swt-buttons {
    display: none !important;
  }

  .swt-seo-hero {
    min-height: auto;
    color: #000;
    background: #fff;
  }

  .swt-hero-grid,
  .swt-content-layout {
    display: block;
    min-height: auto;
    width: 100%;
    padding: 20px 0;
  }

  .swt-profile-card {
    display: none;
  }

  .swt-hero-copy h1,
  .swt-hero-copy > p,
  .swt-breadcrumbs,
  .swt-breadcrumbs a {
    color: #000;
  }
}
