/* Sutherland Guest House — responsive one-page website */
:root {
  --ink: #102a3a;
  --ink-soft: #48606d;
  --cream: #f6f1e8;
  --paper: #fffdf9;
  --gold: #d5a54a;
  --gold-deep: #ad7923;
  --teal: #2d6b68;
  --line: #d9dedb;
  --shadow: 0 18px 60px rgba(16, 42, 58, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

address {
  font-style: normal;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: white;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 42, 58, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--ink);
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.08);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.brand small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:not(.nav-cta):hover {
  color: var(--teal);
}

.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--cream);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

/* Type */
h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(43px, 6.2vw, 77px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4vw, 54px);
}

h3 {
  margin-bottom: 12px;
  font-size: 27px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.prose {
  color: var(--ink-soft);
  font-size: 18px;
}

.prose p:last-child {
  margin-bottom: 0;
}

/* Buttons */
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-primary {
  background: var(--gold);
  color: #1d2730;
  box-shadow: 0 12px 28px rgba(213, 165, 74, 0.28);
}

.button-primary:hover {
  background: #e0b45d;
}

.button-secondary {
  border-color: rgba(16, 42, 58, 0.20);
  color: var(--ink);
  background: white;
}

.button-full {
  width: 100%;
  border: 0;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(213, 165, 74, 0.2), transparent 28%),
    linear-gradient(135deg, #0d2432 0%, #173a4b 58%, #245b60 100%);
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  opacity: .15;
  background-image: linear-gradient(135deg, transparent 75%, white 75%);
  background-size: 42px 42px;
}

.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
  align-items: center;
  gap: 50px;
  padding-top: 74px;
  padding-bottom: 82px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  color: #f3c76e;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.79);
  font-size: clamp(18px, 2vw, 22px);
}

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

.hero .button-secondary {
  color: white;
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
}

.hero-note {
  margin: 22px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

.hero-art {
  position: relative;
  z-index: 1;
}

.hero-art::before {
  content: "";
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  left: 6%;
  top: 3%;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  filter: blur(2px);
}

.hero-photo {
  position: relative;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 30px;
  background: rgba(255,255,255,.10);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
  transform: rotate(1.25deg);
}

.hero-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 47%;
  border-radius: 22px;
}

.hero-photo figcaption {
  position: absolute;
  right: 25px;
  bottom: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  background: rgba(10,29,41,.82);
  color: rgba(255,255,255,.92);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* Facts */
.quick-facts {
  position: relative;
  z-index: 4;
  margin-top: -34px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(16, 42, 58, 0.08);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow);
}

.fact {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
}

.fact + .fact {
  border-left: 1px solid var(--line);
}

.fact-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--cream);
  color: var(--gold-deep);
  font-weight: 900;
}

.fact strong,
.fact span {
  display: block;
}

.fact strong {
  font-size: 14px;
}

.fact div span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 13px;
}

/* General sections */
.section {
  padding: 108px 0;
}

.section-tint {
  background: var(--cream);
}

.split-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 42px;
}

.section-heading > p {
  max-width: 480px;
  margin-bottom: 7px;
  color: var(--ink-soft);
}

.section-heading.compact {
  margin-bottom: 34px;
}

/* Rooms */
.room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.room-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 42, 58, 0.10);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: 0 14px 45px rgba(16, 42, 58, 0.08);
}

.room-card.featured {
  border-color: rgba(213, 165, 74, .6);
}

.featured-label {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.room-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dfe8e8;
}

.room-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.room-content {
  padding: 32px;
}

.room-type {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 20px 0;
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 700;
}

.price span,
.price small {
  color: var(--ink-soft);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.room-content > p:not(.room-type):not(.price) {
  color: var(--ink-soft);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

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

.rate-note {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}


/* Property photo gallery */
.gallery-section {
  background: var(--paper);
}

.property-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.gallery-item {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #dfe8e8;
  box-shadow: 0 16px 46px rgba(16, 42, 58, .10);
}

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

.gallery-item:nth-child(2) img,
.gallery-item:nth-child(3) img {
  object-position: center 42%;
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(7, 24, 34, .72));
  pointer-events: none;
}

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 18px;
  color: white;
  font-size: 14px;
  font-weight: 800;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
}

.gallery-note {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.audience-grid article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.audience-grid article > span {
  display: inline-block;
  margin-bottom: 50px;
  color: var(--gold-deep);
  font-weight: 850;
  letter-spacing: .12em;
}

.audience-grid p {
  color: var(--ink-soft);
}

/* Location */
.location-section {
  color: white;
  background: var(--ink);
}

.location-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 58px;
  align-items: center;
}

.location-section .eyebrow {
  color: #f3c76e;
}

.location-copy > p:not(.eyebrow) {
  color: rgba(255,255,255,.72);
  font-size: 18px;
}

.address-card {
  display: flex;
  gap: 16px;
  margin: 30px 0;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.06);
}

.address-card .pin {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(213,165,74,.15);
  color: #f3c76e;
  font-size: 22px;
}

.address-card address {
  margin-top: 5px;
  color: rgba(255,255,255,.68);
}

.map-frame {
  min-height: 480px;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  background: white;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 464px;
  border: 0;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px;
}

.faq-intro {
  max-width: 420px;
  color: var(--ink-soft);
}

.accordion details {
  border-top: 1px solid rgba(16, 42, 58, .16);
}

.accordion details:last-child {
  border-bottom: 1px solid rgba(16, 42, 58, .16);
}

.accordion summary {
  position: relative;
  padding: 23px 44px 23px 0;
  list-style: none;
  font-weight: 800;
  cursor: pointer;
}

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

.accordion summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 17px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion details p {
  max-width: 680px;
  padding: 0 40px 22px 0;
  color: var(--ink-soft);
}

/* Enquiry */
.enquiry-section {
  background:
    linear-gradient(90deg, rgba(213,165,74,.08) 1px, transparent 1px),
    linear-gradient(rgba(213,165,74,.08) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
}

.enquiry-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.enquiry-copy {
  position: sticky;
  top: 120px;
}

.enquiry-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 18px;
}

.contact-panel {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.contact-item,
.contact-placeholder {
  padding: 18px 20px;
}

.contact-item + .contact-item {
  border-top: 1px solid var(--line);
}

.contact-item span,
.contact-item strong {
  display: block;
}

.contact-item span {
  margin-bottom: 2px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.contact-item a {
  text-decoration: none;
}

.contact-placeholder {
  color: var(--ink-soft);
  font-size: 14px;
}

.enquiry-form {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(16, 42, 58, .10);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 18px;
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.enquiry-form > label {
  display: block;
  margin-bottom: 18px;
}

label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #cbd3d4;
  border-radius: 11px;
  background: #fbfcfb;
  color: var(--ink);
  outline: none;
}

input,
select {
  height: 51px;
  padding: 0 14px;
}

textarea {
  padding: 13px 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(45, 107, 104, .12);
}

.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 600;
}

.consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 3px 0 0;
}

.prepared-enquiry {
  margin-top: 22px;
  padding: 20px;
  border-radius: 14px;
  background: var(--cream);
}

.prepared-enquiry h3 {
  font-size: 22px;
}

.prepared-enquiry pre {
  max-height: 320px;
  overflow: auto;
  padding: 16px;
  border: 1px solid rgba(16,42,58,.12);
  border-radius: 10px;
  background: white;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
}

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

#copy-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
}

/* Footer */
.site-footer {
  padding: 70px 0 22px;
  color: white;
  background: #0a1d29;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 50px;
}

.footer-brand .brand-mark {
  background: var(--gold);
  color: var(--ink);
}

.footer-brand strong {
  color: white;
}

.footer-brand small {
  color: rgba(255,255,255,.55);
}

.footer-grid p,
.footer-grid address {
  color: rgba(255,255,255,.58);
}

.footer-grid > div > strong {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.footer-grid > div:last-child a {
  display: block;
  margin: 8px 0;
  color: rgba(255,255,255,.68);
  text-decoration: none;
}

.footer-grid > div:last-child a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.45);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 80px;
  }

  .hero-art {
    width: min(100%, 680px);
    margin-inline: auto;
  }

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

  .fact:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .fact:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .split-layout,
  .location-grid,
  .faq-layout,
  .enquiry-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .enquiry-copy {
    position: static;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid article {
    min-height: auto;
  }

  .audience-grid article > span {
    margin-bottom: 22px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
    border-radius: 10px;
  }

  .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid {
    gap: 42px;
    padding-top: 66px;
    padding-bottom: 68px;
  }

  .hero-photo {
    padding: 7px;
    border-radius: 22px;
    transform: none;
  }

  .hero-photo img {
    border-radius: 16px;
  }

  .hero-photo figcaption {
    right: 18px;
    bottom: 17px;
    font-size: 9px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .quick-facts {
    margin-top: -20px;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

  .fact + .fact,
  .fact:nth-child(3),
  .fact:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 2px;
  }

  .room-grid,
  .property-gallery,
  .two-columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .room-content {
    padding: 25px;
  }

  .location-grid {
    gap: 30px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 380px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

}

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

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


/* Centre-aligned text requested for the whole website */
body,
button,
input,
select,
textarea {
  text-align: center;
}

h1,
h2,
h3,
.hero-lead,
.prose,
.section-heading > p,
.faq-intro,
.location-copy > p,
.enquiry-copy > p,
.gallery-note,
.rate-note {
  margin-left: auto;
  margin-right: auto;
}

.hero-actions,
.prepared-actions,
.price,
.text-link,
.address-card,
.consent,
.fact,
.brand {
  justify-content: center;
}

.section-heading {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.section-heading > p {
  margin-bottom: 0;
}

.facts-grid .fact,
.room-content,
.audience-grid article,
.location-copy,
.enquiry-copy,
.enquiry-form,
.contact-panel,
.accordion,
.footer-grid > div,
.footer-bottom,
.legal-card {
  text-align: center;
}

.accordion summary {
  padding-left: 44px;
}

.accordion details p {
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-bottom {
  justify-content: center;
  flex-wrap: wrap;
}

.footer-grid > div:last-child a,
.contact-item a,
.back-link {
  text-align: center;
}

.prepared-enquiry pre {
  text-align: center;
}

.gallery-item:nth-child(4) img {
  object-position: center 48%;
}

@media (max-width: 760px) {
  .section-heading,
  .footer-bottom {
    align-items: center;
  }
}
