:root {
  --font-sans: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --navy: #0f2a3d;
  --navy-deep: #0a1e2c;
  --teal: #1c5266;
  --sand: #f6f1e7;
  --sand-dark: #eae1cd;
  --bg-rich: #e7eef0;
  --coral: #ff385c;
  --coral-dark: #e0294c;
  --vrbo-blue: #0F51EC;
  --vrbo-blue-dark: #0c3fbb;
  --ink: #1a1a1a;
  --muted: #5a6672;
  --radius: 14px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar { display: none; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: linear-gradient(180deg, #fbfcfb 0%, var(--bg-rich) 100%) fixed;
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

a { color: inherit; }

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(120deg, #071b2b 0%, #0b3047 55%, #12485c 100%);
  backdrop-filter: blur(6px);
  color: #fff;
  box-shadow: 0 8px 30px -12px rgba(5, 15, 22, 0.55);
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--teal) 55%, var(--vrbo-blue) 100%);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 76px;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (max-width: 640px) {
  .site-header .wrap {
    flex-direction: column;
    gap: 10px;
    min-height: 0;
    padding: 14px 16px;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral) 0%, var(--teal) 100%);
  box-shadow: none;
  flex-shrink: 0;
}

.brand-mark svg { width: 20px; height: 20px; }

@media (max-width: 640px) {
  .brand { font-size: 1.05rem; gap: 9px; white-space: normal; text-align: center; justify-content: center; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-mark svg { width: 16px; height: 16px; }
}

.brand-text,
.brand-secondary { color: #f7fbfc; }

.header-actions {
  display: flex;
  gap: 10px;
}

/* Buttons */
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
  box-sizing: border-box;
}

.btn-book:hover { transform: translateY(-2px); opacity: 0.95; }

.btn-airbnb {
  background: var(--coral);
  color: #fff;
}

.btn-vrbo {
  background: var(--vrbo-blue);
  color: #fff;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .header-actions { width: 100%; justify-content: center; flex-wrap: wrap; }
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, var(--sand) 100%);
  color: var(--ink);
  padding: 48px 0 64px;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.5vw, 3.25rem);
  max-width: 820px;
  margin: 0 auto 20px;
  color: var(--navy);
}

.highlight {
  display: inline-block;
  background: #ffe3e6;
  color: var(--coral-dark);
  padding: 2px 14px;
  border-radius: 12px;
}

.hero-phrase-wrap {
  position: relative;
  display: inline-block;
}

#rotating-text {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#rotating-text.is-swapping {
  opacity: 0;
  transform: translateY(6px);
}

.hero-sub {
  font-size: 1.1rem;
  max-width: 640px;
  color: var(--muted);
  margin: 0 auto 30px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-ratings {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

.hero-gallery-cue {
  position: absolute;
  top: 50%;
  left: 100%;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-left: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 26px -14px rgba(10, 20, 28, 0.65);
  color: var(--teal);
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  animation: gallery-cue-bounce 1.7s ease-in-out infinite;
}

.hero-gallery-cue:hover,
.hero-gallery-cue:focus-visible {
  color: var(--coral-dark);
  animation-play-state: paused;
  transform: translateY(calc(-50% + 3px));
}

@keyframes gallery-cue-bounce {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% + 6px)); }
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--sand-dark);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.88rem;
  color: var(--muted);
  box-shadow: 0 8px 20px -14px rgba(15,42,61,0.4);
}

.rating-pill strong { color: var(--ink); }
.rating-pill em { font-style: normal; color: var(--muted); }

.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 32px;
}

.hero-photo-wrap {
  position: relative;
}

.hero-photo-shape {
  position: absolute;
  inset: -18px -18px auto auto;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border-radius: 24px;
  transform: rotate(-3deg);
  z-index: 0;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 30px 60px -24px rgba(15,42,61,0.45);
  transition: opacity 0.45s ease;
}

.hero-photo.is-fading { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .hero-photo, .hero-gallery-cue { transition: none; animation: none; }
}

/* Floating badges (Rakuten-style layered depth) */
.hero-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 20px 10px 10px;
  box-shadow: 0 16px 32px -12px rgba(10,20,28,0.5);
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sand);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-badge-icon span {
  display: block;
}

.hero-badge strong { display: block; font-size: 0.88rem; }
.hero-badge span.hero-badge-sub { display: block; font-size: 0.76rem; color: var(--muted); }

@media (max-width: 720px) {
  .hero { padding: 32px 0 40px; }
  .hero-photo-frame {
    width: calc(100% - 24px);
    margin: 0 auto 32px;
  }
  .hero-photo-shape { inset: -12px -8px auto auto; }
  .hero-badge {
    position: static;
    display: flex;
    width: fit-content;
    margin: 14px auto 0;
    padding: 8px 16px 8px 8px;
    max-width: calc(100% - 12px);
  }
  .hero-badge-icon { width: 32px; height: 32px; font-size: 1rem; }
  .hero-badge strong { font-size: 0.78rem; }
  .hero-badge span { font-size: 0.68rem; }
  .rating-pill { font-size: 0.8rem; padding: 8px 14px; }
  .hero-gallery-cue {
    display: none;
  }
}

.about-photo {
  position: relative;
}

.about-photo-wrap {
  position: relative;
  aspect-ratio: 3 / 2;
}

.about-photo-shape {
  position: absolute;
  inset: -16px -16px auto auto;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--teal), var(--coral));
  border-radius: var(--radius);
  transform: rotate(5deg);
  z-index: 0;
}

.about-cycle-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.about-cycle-img.is-active {
  opacity: 1;
  z-index: 2;
}

/* Stats strip */
.stats {
  position: relative;
  z-index: 3;
  margin-top: -56px;
  padding: 0 24px 32px;
}

.stats-card {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: linear-gradient(120deg, #e4dfff 0%, #cfc0ff 100%);
  color: #480081;
  border-radius: 18px;
  box-shadow: 0 24px 48px -22px rgba(72, 0, 129, 0.35);
  padding: 16px 20px;
}

.stat {
  position: relative;
  text-align: center;
  padding: 0 10px;
}

.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 56%;
  background: rgba(0,0,0,0.12);
}

.stat-icon {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.stat-num {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.35rem;
  display: block;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a5aad;
}

@media (max-width: 720px) {
  .stats { margin-top: -28px; padding: 0 16px 28px; }
  .stats-card { grid-template-columns: repeat(2, 1fr); row-gap: 14px; border-radius: 16px; padding: 16px; }
  .stat + .stat::before { display: none; }
  .stat:nth-child(2n+1) { border-right: 1px solid rgba(0,0,0,0.12); }
}

/* Sections */
section { padding: 76px 0; }

#about { padding-top: 48px; }

.section-head {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.about-copy p { color: var(--muted); font-size: 1.05rem; margin-bottom: 16px; }

.about-cycle-img {
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -20px rgba(15,42,61,0.4);
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .about-photo-wrap {
    width: calc(100% - 24px);
    margin: 0 auto;
  }

  .about-photo-shape { inset: -12px -8px auto auto; }
}

/* Amenities */
.amenities-section { background: var(--bg-rich); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
  padding-top: 14px;
}

.amenity-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 30px 22px 26px;
  text-align: left;
  box-shadow: 0 20px 40px -30px rgba(15,42,61,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 44px -22px rgba(15,42,61,0.4);
}

.amenity-card .icon {
  position: absolute;
  top: -18px;
  left: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 20px -8px rgba(15,42,61,0.45);
}

.amenities-grid .amenity-card:nth-child(4n+1) .icon { background: #e8f0fe; } /* Google blue */
.amenities-grid .amenity-card:nth-child(4n+2) .icon { background: #fce8e6; } /* Google red */
.amenities-grid .amenity-card:nth-child(4n+3) .icon { background: #fef7e0; } /* Google yellow */
.amenities-grid .amenity-card:nth-child(4n+4) .icon { background: #e6f4ea; } /* Google green */

.amenity-card h3 { font-size: 1.05rem; font-family: var(--font-sans); font-weight: 700; margin: 14px 0 6px; }
.amenity-card p { font-size: 0.92rem; color: var(--muted); margin: 0; }

@media (max-width: 860px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr; }
}

/* Video */
.video-section { background: #fff; }

.property-video {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -20px rgba(15,42,61,0.4);
  background: #000;
}

/* Gallery */
.gallery-group { margin-bottom: 36px; }
.gallery-group h3 {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #480081;
  background: linear-gradient(120deg, #e4dfff 0%, #cfc0ff 100%);
  border-radius: 999px;
  padding: 8px 20px;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px -14px rgba(72, 0, 129, 0.5);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-grid button {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

.gallery-grid button:hover img { transform: scale(1.06); }

@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 28, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 92vw;
  max-height: 82vh;
  border-radius: 8px;
}

.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: none;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* Location */
.location-section { background: var(--navy); color: #fff; }
.location-section .section-head h2 { color: #fff; }
.location-section .section-head p { color: #b9c9d1; }

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.location-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px 20px;
}

.location-card .icon { font-size: 1.6rem; display: block; margin-bottom: 10px; }
.location-card h3 { font-family: var(--font-sans); font-size: 1rem; margin-bottom: 6px; }
.location-card p { color: #c7d5da; font-size: 0.92rem; margin: 0; }

@media (max-width: 720px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* House rules */
.rules-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
}

.rules-list li {
  background: #fff;
  border: 1px solid var(--sand-dark);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Stay planning and FAQ */
.plan-section { background: var(--sand); }
.plan-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.plan-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.plan-copy p:not(.section-kicker) { color: var(--muted); font-size: 1.02rem; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--sand-dark); border-radius: 12px; background: #fff; padding: 0 18px; }
.faq-list summary { cursor: pointer; color: var(--navy); font-weight: 700; padding: 16px 28px 16px 0; position: relative; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; color: var(--coral); font-size: 1.3rem; line-height: 1; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin: 0 0 16px; color: var(--muted); font-size: 0.94rem; }

.inquiry-form {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--sand-dark);
  border-radius: 16px;
  background: #fff;
}

.inquiry-form-heading { margin-bottom: 20px; }
.inquiry-form-heading h3 { margin: 0 0 6px; color: var(--navy); font-size: 1.25rem; }
.inquiry-form-heading p { margin: 0; color: var(--muted); font-size: 0.94rem; }
.inquiry-form label { display: grid; gap: 7px; margin-bottom: 16px; color: var(--navy); font-size: 0.9rem; font-weight: 700; }
.inquiry-name-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 12px 13px;
  box-sizing: border-box;
  border: 1px solid #b9c8cd;
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 400;
}
.inquiry-form textarea { resize: vertical; min-height: 130px; }
.inquiry-form input:focus,
.inquiry-form textarea:focus { outline: 3px solid rgba(29, 129, 142, 0.22); border-color: var(--teal); }
.character-count { margin: -7px 0 18px; color: var(--muted); font-size: 0.82rem; text-align: right; }
.inquiry-submit { border: 0; cursor: pointer; font: inherit; }
.inquiry-status { margin: 14px 0 0; color: var(--teal); font-size: 0.9rem; }
.inquiry-alternative { margin: 16px 0 0; color: var(--muted); font-size: 0.9rem; }
.inquiry-alternative a { color: var(--navy); font-weight: 700; text-decoration: none; }
.inquiry-alternative a span { text-decoration: underline; text-underline-offset: 3px; }
.inquiry-alternative svg { display: inline-block; width: 17px; height: 17px; margin-right: 6px; vertical-align: -0.16em; }
.inquiry-privacy { margin: 12px 0 0; color: var(--muted); font-size: 0.82rem; }
.inquiry-privacy a { color: var(--navy); font-weight: 700; }

/* Terms and privacy page */
.policy-header .wrap { min-height: 68px; }
.policy-home-link { color: #f7fbfc; font-size: 0.93rem; font-weight: 700; text-decoration: none; }
.policy-home-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.policy-page { padding: 72px 0 88px; }
.policy-wrap { max-width: 820px; }
.policy-page h1 { color: var(--navy); font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 8px; }
.policy-updated { margin: 0 0 24px; color: var(--muted); font-size: 0.92rem; }
.policy-intro { max-width: 750px; color: var(--muted); font-size: 1.08rem; }
.policy-nav { display: flex; flex-wrap: wrap; gap: 10px; margin: 32px 0 48px; }
.policy-nav a { padding: 8px 12px; border-radius: 999px; background: #d9e7e9; color: var(--navy); font-size: 0.9rem; font-weight: 700; text-decoration: none; }
.policy-nav a:hover { background: #c9dcdf; }
.policy-section { padding: 34px 0; border-top: 1px solid #cad8dc; }
.policy-section h2 { color: var(--navy); font-size: clamp(1.6rem, 3vw, 2rem); }
.policy-section h3 { margin: 28px 0 8px; color: var(--navy); font-size: 1.08rem; letter-spacing: 0; }
.policy-section p { margin: 0; color: var(--muted); }
.policy-contact { border-bottom: 1px solid #cad8dc; }
.policy-contact a { color: var(--teal); font-weight: 700; }

@media (max-width: 640px) {
  .policy-header .wrap { flex-direction: row; min-height: 64px; padding: 10px 16px; }
  .policy-header .brand { font-size: 0.96rem; text-align: left; }
  .policy-header .brand-mark { width: 30px; height: 30px; }
  .policy-page { padding: 52px 0 68px; }
  .policy-nav { margin-bottom: 36px; }
}

@media (max-width: 860px) {
  .plan-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .inquiry-form { padding: 22px 18px; }
  .inquiry-name-fields { grid-template-columns: 1fr; gap: 0; }
}

/* Final CTA */
.final-cta {
  background: linear-gradient(160deg, var(--teal), var(--navy-deep));
  color: #fff;
  text-align: center;
}

.final-cta h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.final-cta p { color: #d7e6ea; max-width: 560px; margin: 0 auto 30px; font-size: 1.05rem; }

.final-cta .hero-ctas { justify-content: center; }

/* Footer */
footer {
  background: var(--navy-deep);
  color: #9fb1ba;
  padding: 40px 0;
  font-size: 0.85rem;
}

footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

footer a { text-decoration: underline; }

button:focus-visible, a:focus-visible, summary:focus-visible {
  outline: 3px solid #ffce7a;
  outline-offset: 3px;
}
