/* ================================================================
   Between Corridors & Quiet Thoughts — Pure CSS Stylesheet
   ================================================================ */

:root {
    --bg:        #FDFBF7;
    --bg-soft:   #F3EFE9;
    --text:      #2D2824;
    --text-soft: #3D362F;
    --text-mute: #5C5248;
    --text-faint:#8A7E73;
    --border:    #E5DED5;
    --border-h:  #C2B5A3;
    --brand:     #8A735E;
    --brand-h:   #6C5948;
    --brand-glow:#C2A07A;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: #4cfff4;
    color: var(--text);
    font-family: 'Lora', Georgia, serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga', 'kern';
}

::selection { background: var(--border-h); color: var(--text); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0;
}

/* -------------------- Layout helpers -------------------- */
.container { max-width: 1152px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }
.container-prose { max-width: 640px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) {
    .container, .container-narrow, .container-prose { padding: 0 2.5rem; }
}
@media (min-width: 1024px) {
    .container { padding: 0 4rem; }
}

.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }
@media (min-width: 1024px){ .section { padding: 8rem 0; } }

.center { text-align: center; }
.italic { font-style: italic; }
.muted  { color: var(--text-mute); }
.faint  { color: #031c1b; }
.brand  { color: #006660; }

/* -------------------- Typography ------------------------ */
.overline {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #031817;
    margin: 0 0 1.5rem;
}
.h1 {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    line-height: 1.05;
    font-weight: 300;
}
.h1-italic {
    font-style: italic;
    color: var(--brand);
}
.h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    line-height: 1.2;
}
.h3 {
    font-size: clamp(1.35rem, 2vw, 1.65rem);
}
.lead {
    font-size: clamp(1rem, 1.3vw, 1.0rem);
    line-height: 1.45;
    color: var(--text-soft);
}
.quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.3;
    color: var(--text);
}

.prose p { margin: 0 0 1.5rem; line-height: 1.85; color: #000000; }
.prose ul { margin: 1rem 0 1.5rem; padding-left: 1.25rem; }
.prose li {
    list-style: none;
    position: relative;
    padding-left: 0.85rem;
    margin: 0.6rem 0;
    color: var(--text-soft);
}
.prose li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.85em;
    height: 1px; width: 0.5rem;
    background: var(--brand);
}
.drop-cap::first-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    float: left;
    line-height: 0.85;
    padding: 0.25rem 0.75rem 0 0;
    color: #006660;
    font-weight: 500;
}

/* -------------------- Background sections --------------- */
.bg-section { position: relative; isolation: isolate; }
.bg-section::before {
    content: "";
    position: absolute; inset: 0;
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: var(--bg-opacity, 1);
    z-index: -2;
    will-change: transform;
}
.bg-section::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(253,251,247,0.40) 0%, rgba(253,251,247,0.20) 50%, rgba(253,251,247,0.45) 100%);
    z-index: -1;
}
@media (max-width: 768px) {
    .bg-section::before { background-attachment: scroll; }
}

/* -------------------- Navbar ---------------------------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid #006660;
    background: rgba(0, 102, 96, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.navbar-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (min-width: 768px) { .navbar-inner { padding: 1.25rem 2.5rem; } }
@media (min-width: 1024px){ .navbar-inner { padding: 1.25rem 4rem; } }

.brand-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--text);
}
.brand-mark .italic { font-weight: 300; }
.brand-mark .dot { color: var(--brand); margin: 0 0.4rem; }

.nav-links {
    display: none;
    gap: 2.25rem;
    align-items: center;
    list-style: none;
    margin: 0; padding: 0;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #00FFEF;
    transition: color 0.3s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: white; }

.nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: none; border: none; color: var(--text);
}
@media (min-width: 768px) { .nav-toggle { display: none; } }

.nav-mobile {
    display: none;
    border-top: 1px solid var(--border);
    background: var(--bg);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; margin: 0; padding: 0.5rem 1.5rem; }
.nav-mobile a {
    display: block;
    padding: 0.75rem 0;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-faint);
}
.nav-mobile a[aria-current="page"] { color: var(--text); }

/* -------------------- Footer ---------------------------- */
.site-footer {
    /*margin-top: 6rem;*/
    border-top: 1px solid #006660;
    background: #006660;
    padding: 3.5rem 1.5rem;
    text-align: center;
}
.site-footer .quote { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.site-footer .overline { margin: 1.25rem 0; }
.site-footer a { color: white; }
.site-footer a:hover { color: var(--text); }
.site-footer .copyright {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: white;
    margin-top: 1.25rem;
}

/* -------------------- Buttons --------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    border-radius: 9999px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    border: 1px solid var(--text);
    background: var(--text);
    color: var(--bg);
    transition: all 0.3s ease;
}
.btn:hover {
    background: #006660;
    border-color: #006660;
    box-shadow: 0 18px 40px -20px rgba(45,40,36,0.6);
}
.btn .arrow { transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-ghost {
    background: transparent;
    color: var(--text-mute);
    border-color: var(--border-h);
}
.btn-ghost:hover { background: transparent; border-color: var(--text); color: var(--text); }
.link-quiet {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: #031c1b;
    text-underline-offset: 8px;
}
.link-quiet:hover { text-decoration: underline; }

/* -------------------- Cards / images -------------------- */
.image-card {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(45,40,36,0.45);
}
.kenburns img { transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1); }
.kenburns:hover img { transform: scale(1.06); }

.float-soft { animation: floatY 6s ease-in-out infinite; }
.deco-circle {
    position: absolute;
    width: 10rem; height: 10rem;
    border-radius: 50%;
    background: rgba(30, 161, 151, 0.7);
    z-index: -1;
}

/* -------------------- Grids ----------------------------- */
.grid { display: grid; gap: 4rem; }
@media (min-width: 768px) {
    .grid-2 { grid-template-columns: 1fr 1.2fr; align-items: start; gap: 5rem; }
    .grid-2-alt { grid-template-columns: 1.1fr 1fr; align-items: start; gap: 5rem; }
    .grid-hero { grid-template-columns: 1fr 1fr; align-items: center; gap: 5rem; }
}

/* -------------------- Animations ------------------------ */
.grain::after {
    content: "";
    position: fixed;
    inset: -50%;
    pointer-events: none;
    z-index: 100;
    opacity: 0.06;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.15  0 0 0 0 0.12  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    mix-blend-mode: multiply;
    animation: grainShift 7s steps(8) infinite;
}
@keyframes grainShift {
    0%   { transform: translate(0, 0); }
    20%  { transform: translate(-5%, 6%); }
    40%  { transform: translate(7%, -4%); }
    60%  { transform: translate(-3%, -6%); }
    80%  { transform: translate(5%, 5%); }
    100% { transform: translate(0, 0); }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
.reveal[data-delay="4"] { transition-delay: 0.48s; }
.reveal.in { opacity: 1; transform: translateY(0); }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

.ink-shimmer {
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand-glow) 50%, var(--brand) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50%      { background-position: 100% center; }
}

/* Marquee */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-soft);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
    display: inline-flex;
    gap: 3rem;
    animation: marqueeScroll 38s linear infinite;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--text-mute);
}
.marquee-track span { padding: 0 1.5rem; }
.marquee-star { color: var(--border-h); margin-left: 3rem; }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Typewriter */
.tw-word {
    display: inline-block;
    white-space: nowrap;
}
.tw-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.4em);
    filter: blur(8px);
    animation: twReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.tw-char.italic { font-style: italic; }
.tw-char.shimmer {
    background: #006660;
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: twReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards,
               shimmer 6s ease-in-out infinite;
}
.tw-caret {
    display: inline-block;
    width: 2px; height: 0.85em;
    margin-left: 0.12em;
    background: #006660;
    vertical-align: -0.05em;
    opacity: 0;
    animation: twCaret 1.05s steps(2) infinite;
}
@keyframes twReveal {
    0%   { opacity: 0; transform: translateY(0.4em); filter: blur(8px); }
    60%  { opacity: 1; filter: blur(0); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes twCaret {
    0%, 49%   { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Cursor glow */
.cursor-glow {
    position: fixed;
    top: 0; left: 0;
    width: 360px; height: 360px;
    pointer-events: none;
    z-index: 99;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(0,255,239,0.28) 0%,
        rgba(0,255,239,0.14) 35%,
        rgba(0,255,239,0) 70%);
    mix-blend-mode: multiply;
    transform: translate3d(-400px, -400px, 0);
    will-change: transform;
}
@media (pointer: coarse) { .cursor-glow { display: none; } }

/* Scroll progress */
.scroll-progress {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 2px;
    z-index: 101;
    background: rgba(45,40,36,0.05);
    pointer-events: none;
}
.scroll-progress-bar {
    height: 100%; width: 100%;
    transform-origin: 0 0;
    transform: scaleX(0);
    background: linear-gradient(90deg, #006660 0%, #1ea197 50%, #00FFEF 100%);
    background-size: 200% auto;
    animation: shimmer 6s ease-in-out infinite;
    will-change: transform;
}

/* -------------------- Hostel vs Home rows --------------- */
.compare-list {
    list-style: none; margin: 0; padding: 0;
    border-top: 1px solid #006660;
    border-bottom: 1px solid #006660;
}
.compare-list li {
    display: grid;
    gap: 0.75rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #006660;
}
.compare-list li:last-child { border-bottom: none; }
@media (min-width: 768px) {
    .compare-list li {
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 2.5rem;
    }
    .compare-list .slash {
        font-family: 'Cormorant Garamond', serif;
        font-style: italic;
        color: #000000;
    }
    .compare-list .right { text-align: right; }
}
.compare-list .slash { display: none; }
@media (min-width: 768px) { .compare-list .slash { display: inline; } }
/* -------------------- Blog list ------------------------- */
.blog-list { list-style: none; margin: 0; padding: 0; }
.blog-list > li {
    padding: 2.5rem 0;
    border-bottom: 1px solid #006660;
}
.blog-list > li:first-child { padding-top: 0; }
.blog-list > li:last-child  { border-bottom: none; }
.blog-list a { display: block; }
.blog-list h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    color: var(--text);
    transition: color 0.3s ease;
    margin: 0.5rem 0 1rem;
}
.blog-list a:hover h2 { color: #006660; }
.blog-list .read-more {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #006660;
}

@keyframes fade {
  from { opacity:0; transform:translateY(15px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ================================
   DESKTOP LAYOUT  (> 991px)
================================ */

.blog-layout {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.sidebar {
  width: 320px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}

.sidebar-box {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

.sidebar-title {
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #0f7770;
}

/* Desktop: category = clickable tab row */
.category-header {
  width: 100%;
  padding: 16px;
  border: none;
  background: transparent;
  text-align: left;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  transition: .3s;
  font-size: 15px;
  font-weight: 500;
  color: #294847;
  font-family: 'Inter', sans-serif;
}

.category-header:hover  { background: #eef8f6; }
.category-header.active { background: #0f7770; color: #fff; }

/* Desktop: blog panel on the right */
.blog-content {
  flex: 1;
  max-height: 780px;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: #006660 transparent;
}

.blog-content::-webkit-scrollbar { width: 5px; }
.blog-content::-webkit-scrollbar-thumb { background: #b5d6d1; border-radius: 10px; }

/* The cards live here on desktop — hidden on mobile */
.posts-panel {
  display: none;
  animation: fade .4s ease;
}

.posts-panel.active { display: block; }

/* ================================
   MOBILE LAYOUT  (≤ 991px)
================================ */

@media (max-width: 991px) {

  .blog-layout { display: block; }

  /* Hide desktop right panel entirely */
  .blog-content { display: none; }

  .sidebar {
    width: 100%;
    position: relative;
    top: 0;
  }

  .sidebar-box {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .sidebar-title { display: none; }

  /* Each category becomes an accordion card */
  .category-item {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
    margin-bottom: 15px;
  }

  .category-header {
    border-radius: 0;
    margin-bottom: 0;
    font-weight: 600;
    padding: 18px 20px;
  }

  .category-header.active {
    border-radius: 0;
  }

  /* Subcat row sits flush in the same card — give it the same horizontal
     inset as the category header so the buttons line up edge-to-edge. */
  .subcat-nav {
    padding: 0 20px 16px;
  }

  /* On mobile the posts-panel is the accordion body */
  .posts-panel {
    display: none;
    padding: 15px;
    max-height: 520px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #0f7770 transparent;
    animation: fade .4s ease;
  }

  .posts-panel.active { display: block; }

  .posts-panel::-webkit-scrollbar { width: 5px; }
  .posts-panel.active::-webkit-scrollbar-thumb { background: #0f7770; border-radius: 10px; }

  .blog-card h2 { font-size: 28px; }
  .blog-card p  { font-size: 15px; }

}
/* -------------------- Soft cream content card -----------
   When background images are bold, wrap text in `.card-soft`
   for a tasteful frosted-cream readable surface. */
.card-soft {
    background: rgba(253, 251, 247, 0.78);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 4px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    box-shadow: 0 30px 60px -45px rgba(45, 40, 36, 0.25);
}

.logo-size {
    width: 210px;
}

/* -------------------- Subcategories ------------------------- */

/* Subcat row sits inside the sidebar, directly under its category header. */
.subcat-nav {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 8px 0 12px;
}

.subcat-nav.is-open {
    display: flex;
}

.subcat-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
    border-radius: 12px;
    border: 1.5px solid #0f7770;
    background: #0f7770;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, transform .15s ease;
}

.subcat-btn svg { flex-shrink: 0; opacity: .9; transition: transform .25s ease; }

.subcat-btn:hover { transform: translateX(2px); }

.subcat-btn:not(.active) {
    background: #eaf6f4;
    color: #0f7770;
}

.subcat-btn.active {
    background: #0f7770;
    color: #fff;
}

.subcat-tag {
    display: inline-block;
    margin-left: 8px;
    padding: 3px 11px;
    border-radius: 999px;
    background: #d9efeb;
    color: #0f7770;
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: none;
    vertical-align: middle;
}

/* Only the active subcat-group is visible — true on both desktop and mobile */
.subcat-group { display: none; }
.subcat-group.active { display: block; animation: fade .3s ease; }

/* ================================
   MOBILE: subcategories become their own accordions —
   each group expands directly below its own button.
================================ */
@media (max-width: 991px) {

  /* On mobile the chevron rotates to show open/closed state */
  .subcat-btn[data-open="true"] svg { transform: rotate(90deg); }

  /* subcat-groups that get moved inline (outside posts-panel) — show with original blog-list padding */
  .category-item > .subcat-group.active {
    display: block;
    padding: 15px;
    animation: fade .3s ease;
  }
}


.newsletter-section{
    background:#f8f5ef;
    padding:70px 30px;
    border-top:1px solid rgba(0,0,0,.08);
}

.newsletter-container{
    max-width:1200px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.newsletter-left{
    display:flex;
    align-items:center;
    gap:30px;
}

.newsletter-icon{
    width:90px;
    height:90px;
    border:1px solid rgba(0,120,110,.25);
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:40px;
    color:#6fbbb2;
}

.section-tag{
    display:block;
    margin-bottom:12px;

    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;

    color:#0e726d;
    font-weight:600;
}

.newsletter-content h2{
    font-size:48px;
    line-height:1.1;
    margin-bottom:15px;
    color:#144f4b;
}

.newsletter-content p{
    max-width:500px;
    line-height:1.8;
    color:#5f6664;
}

.newsletter-right{
    min-width:450px;
}

.newsletter-form{
    display:flex;
    overflow:hidden;
    border-radius:6px;
    border:1px solid rgba(0,0,0,.12);
    background:#fff;
}

.newsletter-form input{
    flex:1;
    border:none;
    padding:18px 20px;
    font-size:15px;
    outline:none;
}

.newsletter-form button{
    border:none;
    background:#0f6f69;
    color:#fff;
    padding:0 35px;
    cursor:pointer;

    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    font-weight:600;

    transition:.3s;
}

.newsletter-form button:hover{
    background:#0a5c57;
}

.newsletter-note{
    display:block;
    margin-top:15px;
    color:#8b8b8b;
    font-style:italic;
}

/* MOBILE */

@media(max-width:900px){

    .newsletter-container{
        flex-direction:column;
        align-items:flex-start;
    }

    .newsletter-right{
        width:100%;
        min-width:100%;
    }

    .newsletter-form{
        width:100%;
    }

    .newsletter-content h2{
        font-size:38px;
    }

    .newsletter-left{
        flex-direction:column;
        align-items:flex-start;
    }
}

@media(max-width:600px){

    .newsletter-form{
        flex-direction:column;
    }

    .newsletter-form button{
        padding:18px;
    }

    .newsletter-content h2{
        font-size:32px;
    }
}