:root {
  --ink: #062a43;
  --ocean: #076b9f;
  --sea-glass: #a5d9ed;
  --coral: #1686bd;
  --foam: #fbfdff;
  --mist: #d9eff8;
  --line: rgba(7, 47, 66, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--foam); color: var(--ink); font-family: "Manrope", sans-serif; }
a { color: inherit; }
main { overflow: hidden; }
.site-nav, .hero, .travels, .news, footer { width: min(1160px, calc(100% - 56px)); margin: 0 auto; }
.site-nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 28px 0; font-family: "DM Mono", monospace; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.mark { text-decoration: none; font-size: 22px; font-weight: 500; letter-spacing: -.08em; }
.mark span { color: var(--coral); }
.page-tabs { display: flex; align-items: center; justify-content: center; gap: 4px; padding: 4px; border: 1px solid var(--line); border-radius: 100px; background: rgba(201, 226, 223, .45); }
.page-tabs a { color: var(--ocean); text-decoration: none; padding: 10px 15px; border-radius: 100px; transition: background .25s ease, color .25s ease; }
.page-tabs a:hover, .page-tabs a.active { color: var(--foam); background: var(--ocean); }
.nav-name { justify-self: end; color: var(--ocean); }
.hero { min-height: 730px; padding: 72px 0 110px; position: relative; }
.hero > p, .hero > h1 { max-width: 620px; }
.coastline-stencil { width: min(800px, 100%); margin-top: 92px; }
.coastline-stencil svg { display: block; width: 100%; height: auto; overflow: visible; }
.coastline-stencil path, .coastline-stencil circle { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.coastline { stroke: var(--ocean); stroke-width: 3; }
.wave-line { stroke: var(--sea-glass); stroke-width: 2; }
.mountain { stroke: var(--ocean); stroke-width: 3; }
.mountain-detail, .old-town, .port, .lighthouse, .cape { stroke: var(--ink); stroke-width: 2.5; }
.breakwater, .boat { stroke: var(--coral); stroke-width: 2; }
.beam { stroke: var(--coral); stroke-width: 1.5; stroke-dasharray: 5 6; }
.sun { fill: var(--coral); stroke: none; }
.eyebrow, .section-label { font: 500 12px "DM Mono", monospace; text-transform: uppercase; letter-spacing: .08em; color: var(--coral); }
h1 { margin: 28px 0 34px; max-width: 850px; font-size: clamp(4rem, 9vw, 8.5rem); line-height: .93; letter-spacing: -.08em; font-weight: 800; }
h1 em { color: var(--coral); font-style: normal; }
h1 span, h2 span, h3 span { color: var(--ocean); }
.hero-copy { position: relative; z-index: 1; max-width: 440px; margin-left: 17%; color: var(--ocean); line-height: 1.75; font-size: 16px; }
.view-link { display: inline-flex; gap: 10px; align-items: center; margin-top: 62px; color: var(--coral); font: 500 12px "DM Mono", monospace; text-transform: uppercase; text-decoration: none; border-bottom: 1px solid var(--coral); padding-bottom: 6px; }
.view-link span { font-size: 16px; }
.section-heading { display: flex; justify-content: space-between; align-items: start; border-top: 1px solid var(--line); padding-top: 32px; }
.section-heading p { max-width: 260px; margin: 0; color: var(--ocean); line-height: 1.55; }
.section-heading h2 { margin-top: 55px; }
.travels { padding: 30px 0 145px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 70px; }
.gallery-card { margin: 0; aspect-ratio: 4 / 5; position: relative; background: var(--mist); overflow: hidden; box-shadow: 0 12px 24px rgba(6, 42, 67, .1); }
.gallery-card img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-card:hover img { transform: scale(1.04); }
.news { padding: 32px 0 145px; }
.news-list { margin-top: 72px; }
.news-feature { display: grid; grid-template-columns: .7fr 1.3fr; gap: 8%; padding: 0 0 58px; border-bottom: 1px solid var(--line); }
.news-date { color: var(--coral); font: 12px "DM Mono", monospace; text-transform: uppercase; }
h2, h3 { margin: 0; font-size: clamp(3rem, 6vw, 6rem); line-height: .98; letter-spacing: -.08em; }
.news-feature p { max-width: 450px; margin: 36px 0 28px; color: var(--ocean); font-size: 18px; line-height: 1.65; }
.news-update { display: grid; grid-template-columns: .7fr 1.3fr; gap: 8%; padding: 48px 0 58px; border-bottom: 1px solid var(--line); }
.news-update h4 { margin: -8px 0 20px; color: var(--ink); font-size: clamp(2rem, 4vw, 4rem); line-height: 1; letter-spacing: -.06em; }
.news-update p { max-width: 450px; margin: 0; color: var(--ocean); font-size: 18px; line-height: 1.65; }
.news-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; color: var(--ocean); font: 12px "DM Mono", monospace; text-transform: uppercase; }
footer { display: flex; justify-content: space-between; padding: 26px 0; font: 11px "DM Mono", monospace; text-transform: uppercase; color: var(--ocean); }
@media (max-width: 700px) { .site-nav, .hero, .travels, .news, footer { width: min(100% - 36px, 1160px); } .site-nav { grid-template-columns: auto 1fr; gap: 16px; } .page-tabs { grid-column: 1 / -1; grid-row: 2; width: 100%; order: 3; } .page-tabs a { flex: 1; text-align: center; padding: 10px 8px; } .nav-name { font-size: 10px; } .hero { min-height: calc(100vh - 125px); padding-top: 90px; } .hero::after { width: 240px; height: 240px; right: -110px; top: 155px; } .hero::before { width: 170px; height: 170px; right: -70px; top: 195px; } h1 { font-size: clamp(3.3rem, 16vw, 6rem); } .hero-copy { margin-left: 0; margin-top: 45px; max-width: 330px; } .section-heading { display: block; } .section-heading p { margin-top: 20px; } .section-heading h2 { margin-top: 45px; } .travels { padding-bottom: 100px; } .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 45px; } .gallery-card { aspect-ratio: 4 / 5; } .news { padding-bottom: 100px; } .news-feature { display: block; padding-top: 50px; } .news-date { margin-bottom: 38px; } .news-feature p { font-size: 18px; } footer { gap: 20px; flex-direction: column; } }
@media (max-width: 700px) { .site-nav, .hero, .travels, .news, footer { width: min(100% - 36px, 1160px); } .site-nav { grid-template-columns: auto 1fr; gap: 16px; } .page-tabs { grid-column: 1 / -1; grid-row: 2; width: 100%; order: 3; } .page-tabs a { flex: 1; text-align: center; padding: 10px 8px; } .nav-name { font-size: 10px; } .hero { min-height: calc(100vh - 125px); padding-top: 90px; } .hero-art { width: 180px; height: 240px; right: -4%; top: 325px; box-shadow: 12px 12px 0 var(--sea-glass); } .hero-art::before { inset: 9px; } .hero-art-frame { padding: 9px; } h1 { font-size: clamp(3.3rem, 16vw, 6rem); } .hero-copy { margin-left: 0; margin-top: 45px; max-width: 330px; } .section-heading { display: block; } .section-heading p { margin-top: 20px; } .section-heading h2 { margin-top: 45px; } .travels { padding-bottom: 100px; } .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 45px; } .gallery-card { aspect-ratio: 4 / 5; } .news { padding-bottom: 100px; } .news-feature { display: block; padding-top: 50px; } .news-date { margin-bottom: 38px; } .news-feature p { font-size: 18px; } footer { gap: 20px; flex-direction: column; } }
@media (max-width: 700px) { .site-nav, .hero, .travels, .news, footer { width: min(100% - 36px, 1160px); } .site-nav { grid-template-columns: auto 1fr; gap: 16px; } .page-tabs { grid-column: 1 / -1; grid-row: 2; width: 100%; order: 3; } .page-tabs a { flex: 1; text-align: center; padding: 10px 8px; } .nav-name { font-size: 10px; } .hero { min-height: calc(100vh - 125px); padding-top: 28px; } .hero > p, .hero > h1 { max-width: 100%; } .coastline-stencil { margin-top: 64px; } h1 { font-size: clamp(3.3rem, 16vw, 6rem); } .hero-copy { margin-left: 0; margin-top: 45px; max-width: 330px; } .section-heading { display: block; } .section-heading p { margin-top: 20px; } .section-heading h2 { margin-top: 45px; } .travels { padding-bottom: 100px; } .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 45px; } .gallery-card { aspect-ratio: 4 / 5; } .news { padding-bottom: 100px; } .news-list { margin-top: 50px; } .news-feature, .news-update { display: block; } .news-feature { padding-bottom: 45px; } .news-update { padding: 40px 0 45px; } .news-date { margin-bottom: 24px; } .news-feature p { font-size: 18px; } .news-update p { font-size: 18px; } .news-footer { gap: 20px; align-items: flex-start; flex-direction: column; } footer { gap: 20px; flex-direction: column; } }
