/* Sol's Cliff House — reproduction of the Bellevue theme as the site ran it.
   Values recovered from wp-content/themes/bellevue/assets/css/app.css and from the
   inline <style> the live site emitted (accent #048c8c, not the theme default #1e8190). */

:root {
  --accent:        #048c8c;
  --cta:           #025e73;
  --text:          #5c5c5c;
  --heading:       #444;
  --page-bg:       #666;
  --sect-light:    #fbfcfd;
  --sect-grey-1:   #acacac;
  --sect-grey-2:   #b7b7b7;
  --header-dark:   #2c4234;   /* warm dark green, replaces the old charcoal */
  --banner-dark:   #223529;   /* a shade deeper for the nav bar itself */
  --wordmark:      #f2e8d5;   /* warm cream */
  --container:     1170px;
}

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

body {
  margin: 0;
  background: var(--page-bg);
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

.wrap { background: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
}

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

h1, h2, h3 { color: var(--heading); font-weight: 600; margin-top: 0; }
h1 { font-size: 40px; text-transform: uppercase; line-height: 1.2; }
h2 { font-size: 28px; text-transform: uppercase; margin-bottom: 15px; }
h3 { font-size: 20px; }

/* ---------- header ---------- */

.top-nav {
  background: var(--header-dark);
  color: #cfcfcf;
  font-size: 13px;
  padding: 8px 0;
}
.top-nav .container { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 24px; }
.top-nav-text { margin-right: auto; }
.top-nav-icon-blocks { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.top-nav a { color: #cfcfcf; }
.top-nav a:hover { color: #fff; text-decoration: none; }

.banner { background: var(--banner-dark); }
.banner .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }

.th-logo-text-main {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 29px; font-weight: 600; font-style: normal; letter-spacing: .035em;
  color: var(--wordmark); padding: 20px 0; display: block; line-height: 1.2;
}
.th-logo-text-main:hover { text-decoration: none; color: #fff; }
@media (max-width: 767px) { .th-logo-text-main { font-size: 24px; padding: 16px 0; } }

.navbar-toggle {
  display: none; background: none; border: 1px solid #555; color: #fff;
  padding: 8px 12px; font-size: 16px; cursor: pointer; border-radius: 3px;
}

.navbar-nav { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; }
.navbar-nav > li { position: relative; }
.navbar-nav > li > a {
  display: block; padding: 30px 14px; color: #e8e8e8;
  font-size: 13px; text-transform: uppercase; letter-spacing: .04em; position: relative;
}
.navbar-nav > li > a:hover { color: #fff; text-decoration: none; }
.navbar-nav > li > a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 22px;
  height: 2px; background: var(--accent); opacity: 0; transition: opacity .15s linear;
}
.navbar-nav > li > a:hover::after, .navbar-nav > li.active > a::after { opacity: 1; }

.dropdown-menu {
  list-style: none; margin: 0; padding: 6px 0; position: absolute; left: 0; top: 100%;
  min-width: 220px; background: #fff; border: 1px solid #e5e5e5; z-index: 40;
  display: none; box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.navbar-nav > li:hover > .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 8px 18px; color: var(--text); font-size: 14px; }
.dropdown-menu a:hover { color: var(--accent); text-decoration: none; }

/* ---------- hero ---------- */

.hero {
  background: #333 center/cover no-repeat;
  padding: 295px 0 290px;
  text-align: center;
  color: #fff;
  position: relative;
}
.hero::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.28); }
.hero .container { position: relative; }
.hero h1 { color: #fff; margin: 0 0 10px; }
.hero .slider-subtitle { font-size: 18px; letter-spacing: .12em; text-transform: uppercase; }

/* ---------- sections ---------- */

.section { padding: 75px 0; }
.section-light { background: var(--sect-light); padding: 80px 0 40px; }
.section-grey  { background: var(--sect-grey-1); padding: 80px 0; color: #fff; }
.section-plain { padding: 75px 0 30px; }
.section-rooms { background: var(--sect-grey-2); padding: 75px 0; }

.section-grey h2, .section-grey h3 { color: #fff; }

.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { position: relative; padding-bottom: 16px; margin: 0 0 30px; }
.section-header h2::after {
  content: ""; position: absolute; bottom: 0; left: 50%;
  width: 50px; height: 3px; margin-left: -25px; background: var(--accent);
}
.section-grey .section-header h2::after { background: rgba(255,255,255,.5); }
.section-header p { max-width: 800px; margin: 0 auto; font-style: italic; }

.prose { max-width: 800px; margin: 0 auto; }
.prose p { margin: 0 0 20px; }

/* ---------- video ---------- */

.video-embed { max-width: 860px; margin: 0 auto; }
.video-embed .ratio { position: relative; padding-bottom: 56.25%; height: 0; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- room tiles ---------- */

.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.room-item { position: relative; display: block; overflow: hidden; }
.room-item img { display: block; width: 100%; height: auto; }
.room-overlay {
  position: absolute; inset: 0; background: var(--accent);
  opacity: 0; transition: opacity .1s linear;
}
.room-item:hover .room-overlay { opacity: .85; }
.room-caption {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 20px;
  color: #fff; opacity: 0; transition: opacity .1s linear;
}
.room-item:hover .room-caption { opacity: 1; }
.room-item:hover { text-decoration: none; }
.room-title { color: #fff; font-size: 20px; font-weight: 600; text-transform: uppercase; margin: 0 0 8px; }
.room-sub { color: #fff; font-size: 14px; line-height: 1.5; margin: 0; }
.room-label { text-align: center; padding: 14px 0 0; font-size: 15px; font-weight: 600; color: #fff; text-transform: uppercase; }

/* ---------- testimonials ---------- */

.testimonials { padding-top: 40px; padding-bottom: 40px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.testimonial { background: #fafafa; border-left: 3px solid var(--accent); padding: 24px 28px; }
.testimonial p { margin: 0 0 14px; font-style: italic; }
.testimonial cite { font-style: normal; font-size: 14px; color: #777; }
.testimonial cite strong { color: var(--heading); }

/* ---------- footer ---------- */

.footer { background: var(--header-dark); color: #b9b9b9; padding: 55px 0 0; font-size: 14px; }
.footer a { color: #b9b9b9; }
.footer a:hover { color: #fff; }
.footer .widget-title {
  color: #fff; font-size: 16px; text-transform: uppercase; margin: 0 0 18px;
  padding-bottom: 12px; position: relative;
}
.footer .widget-title::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 50px; height: 2px; background: var(--accent);
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 6px; }
.footer-bottom { border-top: 1px solid #3d3d3d; margin-top: 45px; padding: 20px 0; font-size: 13px; }

/* ---------- responsive ---------- */

@media (max-width: 991px) {
  .room-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 160px 0 155px; }
  h1 { font-size: 32px; }
}

@media (max-width: 767px) {
  .banner .container { align-items: center; }
  .navbar-toggle { display: block; }
  .navbar-nav {
    display: none; flex-direction: column; width: 100%;
    border-top: 1px solid #333; padding-bottom: 10px;
  }
  .navbar-nav.is-open { display: flex; }
  .navbar-nav > li > a { padding: 12px 0; }
  .navbar-nav > li > a::after { display: none; }
  .dropdown-menu {
    display: block; position: static; border: 0; box-shadow: none;
    background: transparent; padding: 0 0 8px 16px; min-width: 0;
  }
  .dropdown-menu a { color: #b9b9b9; padding: 6px 0; }
  .room-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .hero { padding: 110px 0 105px; }
  h1 { font-size: 26px; }
  h2 { font-size: 24px; }
  .top-nav .container { flex-direction: column; align-items: flex-start; }
}

/* ---------- interior pages ----------
   Values from the live /rooms/the-dining-room/ capture:
   page header #3f3f42 + bg image 50/50 · content 100/30 · video #69777d 80/80
   · service blocks 30/65 · testimonial #1c414a 35/35 */

.page-header {
  background: #3f3f42 center/cover no-repeat;
  padding: 50px 0;
  text-align: center;
  position: relative;
}
.page-header::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.page-header .container { position: relative; }
.page-header h1 { color: #fff; margin: 0; }

.section-content { padding: 100px 0 30px; }
.section-video { background: #69777d; padding: 80px 0; color: #fff; }
.section-video h2, .section-video .section-header p { color: #fff; }
.section-video .section-header h2::after { background: rgba(255,255,255,.5); }
.section-features { padding: 30px 0 65px; }
.section-testimonial { background: #1c414a; padding: 35px 0; color: #fff; }

.body-image { display: block; width: 100%; height: auto; margin: 10px 0 30px; }
.prose .body-image { margin-top: 20px; }

.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 30px;
  max-width: 900px; margin: 0 auto; list-style: none; padding: 0;
}
.feature-grid li { text-align: center; }
.feature-grid .feature-title {
  font-size: 16px; font-weight: 600; color: var(--heading);
  text-transform: uppercase; margin: 0;
}
.feature-grid li::before {
  content: ""; display: block; width: 36px; height: 36px; margin: 0 auto 12px;
  border: 2px solid var(--accent); border-radius: 50%;
}

.section-testimonial .testimonial {
  background: transparent; border: 0; text-align: center;
  max-width: 860px; margin: 0 auto; padding: 0;
}
.section-testimonial .testimonial p { color: #eaf1f2; font-size: 17px; }
.section-testimonial .testimonial cite { color: #b9cdd1; }
.section-testimonial .testimonial cite strong { color: #fff; }

.figure-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.figure-grid figure { margin: 0; }
.figure-grid img { width: 100%; height: auto; display: block; }
.figure-grid figcaption { text-align: center; padding-top: 10px; font-size: 14px; }

@media (max-width: 991px) { .feature-grid, .figure-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) {
  .feature-grid, .figure-grid { grid-template-columns: 1fr; }
  .section-content { padding: 55px 0 20px; }
}

/* ---------- rates table ---------- */
.rates-table { width: 100%; border-collapse: collapse; margin: 24px 0 30px; }
.rates-table th, .rates-table td { padding: 12px 14px; border-bottom: 1px solid #e3e3e3; text-align: left; }
.rates-table th { background: #f4f6f7; font-weight: 600; color: var(--heading); text-transform: uppercase; font-size: 13px; letter-spacing: .03em; }
.rates-table tr:last-child td { border-bottom: 0; }
@media (max-width: 767px) { .rates-table th, .rates-table td { padding: 9px 8px; font-size: 14px; } }

/* ---------- permit ---------- */
.permit-details { max-width: 800px; margin: 0 auto 30px; }
.permit-details dl { display: grid; grid-template-columns: max-content 1fr; gap: 8px 24px; margin: 0; }
.permit-details dt { font-weight: 600; color: var(--heading); }
.permit-details dd { margin: 0; }
.permit-note { max-width: 800px; margin: 0 auto 24px; font-style: italic; }
@media (max-width: 767px) { .permit-details dl { grid-template-columns: 1fr; gap: 2px; } .permit-details dd { margin-bottom: 10px; } }

/* ---------- availability calendar ---------- */
.season { margin-bottom: 45px; }
.season h3 {
  font-size: 22px; text-transform: uppercase; margin: 0 0 6px;
  padding-bottom: 12px; border-bottom: 1px solid #e3e3e3;
}
.season-note { font-size: 14px; color: #888; margin: 0 0 22px; }
.week-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; list-style: none; padding: 0; margin: 0; }
.week {
  border: 1px solid #dcdcdc; background: #fff; border-radius: 3px; padding: 12px 8px;
  text-align: center; font: inherit; cursor: pointer; transition: background .12s, border-color .12s, color .12s;
}
.week .week-date { display: block; font-weight: 600; color: var(--heading); font-size: 15px; }
.week .week-state { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: #8a8a8a; margin-top: 4px; }
.week:hover:not(:disabled) { border-color: var(--accent); }
.week:disabled, .week.is-booked {
  cursor: not-allowed; background: #f3f3f3; border-color: #e6e6e6;
}
.week:disabled .week-date, .week.is-booked .week-date { color: #a8a8a8; font-weight: 400; }
.week.is-selected { background: var(--accent); border-color: var(--accent); }
.week.is-selected .week-date, .week.is-selected .week-state { color: #fff; }
.week.is-inrange { background: #d9edee; border-color: #a9d5d7; }

.selection-bar {
  position: sticky; bottom: 0; z-index: 30; margin-top: 30px;
  background: #fff; border-top: 2px solid var(--accent);
  padding: 16px 0; box-shadow: 0 -4px 14px rgba(0,0,0,.08);
}
.selection-bar .container { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.selection-summary { margin: 0; font-size: 16px; font-weight: 600; color: var(--heading); }
.selection-bar .btn-cta {
  background: var(--cta); color: #fff; border: 0; border-radius: 3px;
  padding: 12px 26px; font-size: 16px; font-weight: 600; cursor: pointer; margin-left: auto;
}
.selection-bar .btn-cta:hover { background: var(--accent); text-decoration: none; color: #fff; }
.selection-clear { background: none; border: 0; color: var(--accent); cursor: pointer; font-size: 14px; text-decoration: underline; }

.cal-status { text-align: center; padding: 40px 20px; color: #777; }
.cal-error { background: #fdf3f2; border: 1px solid #f0d5d2; border-radius: 3px; padding: 24px; text-align: center; }
.cal-error strong { display: block; color: var(--heading); margin-bottom: 6px; }
.cal-legend { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; font-size: 13px; color: #777; margin: 0 0 28px; }
.cal-legend span { display: flex; align-items: center; gap: 7px; }
.cal-legend i { width: 14px; height: 14px; border-radius: 2px; border: 1px solid #dcdcdc; display: inline-block; }
.cal-legend .k-open { background: #fff; }
.cal-legend .k-booked { background: #f3f3f3; border-color: #e6e6e6; }
.cal-legend .k-sel { background: var(--accent); border-color: var(--accent); }

@media (max-width: 991px) { .week-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 767px) {
  .week-grid { grid-template-columns: repeat(2, 1fr); }
  .selection-bar .container { flex-direction: column; align-items: stretch; }
  .selection-bar .btn-cta { margin-left: 0; width: 100%; }
}

/* ---------- inquiry form ---------- */
.inquiry-form { max-width: 680px; margin: 0 auto; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; color: var(--heading); margin-bottom: 6px; font-size: 15px; }
.field .opt { font-weight: 400; color: #999; font-size: 13px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 13px; font: inherit; color: var(--text);
  border: 1px solid #cfcfcf; border-radius: 3px; background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); outline: 2px solid rgba(4,140,144,.15); }
.field textarea { min-height: 130px; resize: vertical; }
.field.has-error input, .field.has-error select { border-color: #c0392b; }
.field-hint { font-size: 13px; color: #888; margin: 6px 0 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn-submit {
  background: var(--cta); color: #fff; border: 0; border-radius: 3px;
  padding: 14px 34px; font-size: 17px; font-weight: 600; cursor: pointer;
}
.btn-submit:hover { background: var(--accent); }
.btn-submit[disabled] { opacity: .6; cursor: default; }
.form-note { text-align: center; margin: 26px auto 0; max-width: 680px; font-size: 14px; color: #777; }
.form-msg { border-radius: 3px; padding: 18px 20px; margin-bottom: 24px; }
.form-msg.ok { background: #eef7f7; border: 1px solid #bcdedf; }
.form-msg.bad { background: #fdf3f2; border: 1px solid #f0d5d2; }
.form-msg strong { display: block; color: var(--heading); margin-bottom: 4px; }
.selected-weeks { background: #eef7f7; border: 1px solid #bcdedf; border-radius: 3px; padding: 12px 14px; font-weight: 600; color: var(--heading); }

/* ---------- call-to-action band ---------- */
.section-cta { background: var(--sect-light); padding: 60px 0; border-top: 1px solid #e8ebec; }
.cta-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.cta-inner h2 { margin-bottom: 10px; }
.cta-lede { font-style: italic; color: #777; margin: 0 0 26px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.btn-primary, .btn-secondary {
  display: inline-block; padding: 13px 30px; border-radius: 3px;
  font-size: 16px; font-weight: 600; text-decoration: none;
}
.btn-primary { background: var(--cta); color: #fff; }
.btn-primary:hover { background: var(--accent); color: #fff; text-decoration: none; }
.btn-secondary { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-secondary:hover { background: var(--accent); color: #fff; text-decoration: none; }
.cta-contact { font-size: 15px; color: #666; margin: 0; }
.cta-contact strong { color: var(--heading); }
.cta-contact a { white-space: nowrap; }

/* ---------- rates fine print ---------- */
.rate-notes { max-width: 800px; margin: 0 auto 6px; padding: 0; list-style: none; }
.rate-notes li { position: relative; padding-left: 20px; margin-bottom: 8px; font-size: 15px; }
.rate-notes li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; background: var(--accent); border-radius: 50%; }
.rates-season { font-size: 15px; color: #777; text-align: center; margin: 0 0 26px; }
.discount-note {
  background: #eef7f7; border: 1px solid #bcdedf; border-radius: 3px;
  padding: 14px 18px; margin: 0 0 26px; font-size: 15px; text-align: center;
}
.discount-note strong { color: var(--heading); }
@media (max-width: 767px) { .cta-actions { flex-direction: column; } .btn-primary, .btn-secondary { width: 100%; } }

/* ---------- how to find us ---------- */
.map-embed { max-width: 900px; margin: 0 auto 30px; border: 1px solid #dcdcdc; border-radius: 3px; overflow: hidden; }
.map-embed iframe { display: block; width: 100%; height: 460px; border: 0; }
.directions-note {
  background: #fdf8ec; border: 1px solid #e8dcc0; border-left: 4px solid #c9a227;
  border-radius: 3px; padding: 18px 20px; margin: 0 auto 28px; max-width: 800px;
}
.directions-note .note-title { display: block; font-weight: 600; color: var(--heading); margin: 0 0 6px; }
.directions-note p { margin: 0; }
.directions-note strong { color: var(--heading); }   /* stays inline */
.address-block { text-align: center; margin: 0 auto 28px; max-width: 800px; font-size: 17px; line-height: 1.9; }
.address-block .addr-label { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: #999; }
@media (max-width: 767px) { .map-embed iframe { height: 320px; } }
.text-first { display: inline-block; margin-top: 2px; }
.cta-contact .text-first { color: #666; }

/* ---------- availability call to action ----------
   Sits on the light intro section, so it is accent-on-white rather than the
   cream-on-dark treatment it had in the hero. Type matches .th-logo-text-main. */
.avail-cta { text-align: center; margin: 0 0 22px; }
.avail-cta a {
  display: inline-block;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 28px; font-style: normal; font-weight: 600; letter-spacing: .035em;
  color: var(--wordmark); text-decoration: none;
  border: 2px solid rgba(242,232,213,.6); border-radius: 40px;
  padding: 11px 34px;
  transition: background .18s linear, color .18s linear, border-color .18s linear;
}
.avail-cta a:hover, .avail-cta a:focus {
  background: var(--accent); border-color: var(--accent); color: #fff; text-decoration: none;
}
@media (max-width: 767px) {
  .avail-cta { margin-bottom: 18px; }
  .avail-cta a { font-size: 22px; padding: 10px 26px; }
}

.text-first { display: inline-block; margin-top: 2px; }
.cta-contact .text-first { color: #666; }

.figure-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto 10px; }
@media (max-width: 767px) { .figure-grid.cols-2 { grid-template-columns: 1fr; } }
