/* === DESIGN TOKENS === */
:root {
  --navy: #1a3a5c;
  --navy-dark: #0f2540;
  --navy-light: #2a5080;
  --orange: #e07a2f;
  --orange-light: #f5a45a;
  --sand: #f5f0e8;
  --sand-dark: #ede5d8;
  --white: #ffffff;
  --gray-100: #f9f8f6;
  --gray-200: #eeece8;
  --gray-400: #b0aa9e;
  --gray-600: #6b6560;
  --gray-800: #2e2b27;
  --green: #2d8a4e;
  --red: #c0392b;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(26,58,92,0.10);
  --shadow-lg: 0 8px 32px rgba(26,58,92,0.16);
  --transition: 0.22s ease;

  --max-width: 1100px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--orange); }

/* === GOOGLE FONTS IMPORT — font-display:swap prevents invisible text on slow mobile === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Inter:wght@400;500;600&display=swap&font-display=swap');

/* === LAYOUT === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section--alt {
  background: var(--sand);
}

.section--dark {
  background: var(--navy-dark);
  color: var(--white);
}

/* === HEADER & NAV === */
#site-header {
  background: var(--navy-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 68px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--orange-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Desktop nav */
.nav-desktop {
  display: flex;
  gap: 0;
  list-style: none;
}

.nav-desktop a {
  display: block;
  padding: 8px 13px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #cbd8e8;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 6px !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--orange-light) !important;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile a {
  display: block;
  padding: 14px 24px;
  color: #d0dce8;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), background var(--transition);
}

.nav-mobile a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.nav-mobile.open { display: block; }

/* === HERO === */
.hero {
  background: linear-gradient(155deg, var(--navy-dark) 0%, var(--navy) 55%, #1e4e78 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(224,122,47,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 10%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(224,122,47,0.2);
  border: 1px solid rgba(224,122,47,0.5);
  color: var(--orange-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--orange-light);
}

.hero-desc {
  font-size: 1.1rem;
  color: #a8c4df;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a8c4df;
  font-size: 0.88rem;
}

.badge-icon {
  font-size: 1.3rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: #c96d28;
  border-color: #c96d28;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(224,122,47,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--white);
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 56px 0 48px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
}

.page-hero p {
  color: #a8c4df;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* === SECTION HEADERS === */
.section-header {
  margin-bottom: 48px;
}

.section-header.centered {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section--dark h2.section-title { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
}

.section-header.centered .section-sub { margin: 0 auto; }

/* === FEATURE CARDS === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* === PROPERTY DETAILS === */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid var(--gray-200);
}

.spec-item {
  background: var(--white);
  padding: 22px 20px;
  text-align: center;
}

.spec-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.spec-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.spec-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 4px;
}

/* === AMENITY LIST === */
.amenity-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--gray-800);
  padding: 8px 0;
}

.amenity-item::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* === PHOTO GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
  gap: 8px;
}

.gallery-placeholder-icon { font-size: 2.5rem; opacity: 0.6; }

/* === RATES TABLE === */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.rates-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rates-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--gray-200);
}

.rates-table tr:last-child td { border-bottom: none; }
.rates-table tr:nth-child(even) td { background: var(--gray-100); }

.fee-note {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-top: 6px;
}

/* === RESERVATION FORM === */
.reservation-form-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.form-disclaimer {
  background: #fff8ee;
  border: 1px solid #e8c080;
  border-left: 4px solid var(--orange);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 32px;
  font-size: 0.88rem;
  color: #5a4010;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}

.form-full { grid-column: 1 / -1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group label .req {
  color: var(--orange);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.10);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--red);
}

.field-error {
  font-size: 0.78rem;
  color: var(--red);
  display: none;
}

.form-group.has-error .field-error { display: block; }

/* Honeypot */
.hp-field { display: none !important; visibility: hidden; }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--gray-100);
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--navy);
}

.checkbox-group label {
  font-size: 0.88rem;
  color: var(--gray-800);
  cursor: pointer;
  font-weight: 400 !important;
}

.checkbox-group label a { color: var(--orange); font-weight: 500; }

.form-section-divider {
  grid-column: 1 / -1;
  border: none;
  border-top: 1.5px solid var(--gray-200);
  margin: 8px 0;
}

.form-section-label {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  padding-top: 4px;
}

/* Success / error alerts */
#form-result {
  display: none;
  padding: 20px 24px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

#form-result.success {
  background: #eaf7ef;
  border: 1px solid #82c89a;
  color: #1a5c30;
}

#form-result.error {
  background: #fef0ee;
  border: 1px solid #e89080;
  color: #5c1a1a;
}

/* === ZELLE SECTION === */
.zelle-box {
  background: linear-gradient(135deg, #f8f4ff 0%, #f0f4ff 100%);
  border: 2px solid #6c63ff22;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  max-width: 680px;
  margin: 0 auto;
}

.zelle-steps {
  list-style: none;
  counter-reset: zelle;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.zelle-steps li {
  counter-increment: zelle;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--gray-800);
}

.zelle-steps li::before {
  content: counter(zelle);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.zelle-disclaimer {
  background: rgba(26,58,92,0.07);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-top: 16px;
}

/* === HOUSE RULES === */
.rules-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  font-size: 0.93rem;
}

.rule-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* === ATTRACTIONS === */
.attraction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.attraction-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}

.attraction-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.attraction-header {
  background: var(--navy);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.attraction-emoji { font-size: 2rem; }

.attraction-header h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.attraction-dist {
  color: var(--orange-light);
  font-size: 0.78rem;
  margin-top: 2px;
}

.attraction-body { padding: 18px 20px; }

.attraction-body p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  font-size: 1.5rem;
  margin-top: 2px;
}

.contact-info-item h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.contact-info-item p, .contact-info-item a {
  font-size: 0.95rem;
  color: var(--gray-800);
}

/* === LEGAL === */
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  margin: 36px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.legal-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }

.legal-content p, .legal-content li {
  font-size: 0.93rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-content ul { padding-left: 22px; }

.legal-content strong { color: var(--gray-800); }

/* === FOOTER === */
#site-footer {
  background: var(--navy-dark);
  color: #8aaccb;
  padding: 56px 0 32px;
}

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

.footer-brand .logo-main { font-size: 1.2rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: #6a90b0; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.86rem; color: #6a90b0; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: #4a6a80;
  flex-wrap: wrap;
  gap: 12px;
}

/* === NAV PAGE TABS === */
.page-tabs {
  display: flex;
  gap: 0;
  background: var(--sand-dark);
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: 40px;
  overflow-x: auto;
}

.page-tab {
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  border: none;
  background: none;
  white-space: nowrap;
  transition: all var(--transition);
}

.page-tab.active,
.page-tab:hover {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}

/* === PAGES VISIBILITY === */
.page-section { display: block; }

/* === NOTICE BOXES === */
.notice {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.notice-info {
  background: #eaf2fb;
  border: 1px solid #90b8dc;
  color: #1a3a5c;
}

.notice-warning {
  background: #fff8ee;
  border: 1px solid #e8c080;
  color: #5a3a00;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 48px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: 1; }
  .hero { padding: 60px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .zelle-box { padding: 24px 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* === MOBILE PERFORMANCE & CORE WEB VITALS === */

/* Prevent layout shift from images before they load */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure tap targets are large enough on mobile (Google requirement: 48px min) */
@media (max-width: 640px) {
  .btn { min-height: 48px; padding: 14px 24px; }
  .nav-mobile a { min-height: 48px; display: flex; align-items: center; }
  .checkbox-group input[type="checkbox"] { width: 20px; height: 20px; }

  /* Reduce font sizes slightly on very small screens to prevent horizontal scroll */
  .hero h1 { font-size: 2rem; }
  .spec-value { font-size: 1.2rem; }
  .zelle-box { padding: 20px 16px; }

  /* Stack rate cards on mobile */
  .rate-cards-grid { grid-template-columns: 1fr !important; }
}

/* Smooth scrolling only when user hasn't opted out (accessibility) */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* Remove tap highlight on mobile nav links */
a, button { -webkit-tap-highlight-color: transparent; }

/* Prevent text size adjustment on iOS after orientation change */
html { -webkit-text-size-adjust: 100%; }
