@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
--bg: #f2efe7;
--bg-dark: #e5e0d4;
--text: #171713;
--muted: #706d64;
--line: rgba(23, 23, 19, 0.18);
--dark: #191916;
--white: #f7f5ee;
}

{
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
margin: 0;
background: var(--bg);
color: var(--text);
font-family: "Inter", Arial, sans-serif;
font-size: 15px;
line-height: 1.65;
}

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

a {
color: inherit;
text-decoration: none;
}

/* HEADER */

.header {
min-height: 86px;
padding: 25px 5vw;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid var(--line);
}

.logo {
font-family: "Cormorant Garamond", serif;
font-size: 25px;
font-weight: 600;
letter-spacing: .08em;
}

.nav {
display: flex;
gap: 30px;
}

.nav a {
position: relative;
font-size: 10px;
letter-spacing: .16em;
text-transform: uppercase;
}

.nav a::after {
content: "";
position: absolute;
bottom: -6px;
left: 0;
width: 0;
height: 1px;
background: var(--text);
transition: width .3s ease;
}

.nav a:hover::after {
width: 100%;
}

/* GENERAL */

.section {
padding: 120px 5vw;
}

.eyebrow {
margin-bottom: 25px;
color: var(--muted);
font-size: 10px;
letter-spacing: .23em;
text-transform: uppercase;
}

.section-number {
color: var(--muted);
font-size: 10px;
letter-spacing: .2em;
text-transform: uppercase;
}

h1,
h2,
h3 {
margin-top: 0;
font-family: "Cormorant Garamond", Georgia, serif;
font-weight: 500;
line-height: .92;
letter-spacing: -.035em;
}

h1 {
font-size: clamp(75px, 10vw, 160px);
}

h2 {
font-size: clamp(55px, 7vw, 110px);
}

h3 {
font-size: 45px;
}

p {
color: #55524b;
}

.button {
display: inline-block;
margin-top: 25px;
padding: 14px 25px;
border: 1px solid var(--text);
color: var(--text);
font-size: 10px;
letter-spacing: .17em;
text-transform: uppercase;
transition: .25s ease;
}

.button:hover {
background: var(--text);
color: var(--bg);
}

/* HERO */

.hero {
min-height: calc(100vh - 86px);
padding: 6vw 5vw;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 6vw;
align-items: center;
}

.hero-content {
max-width: 700px;
}

.hero h1 {
margin-bottom: 40px;
}

.hero-description {
max-width: 480px;
font-size: 17px;
}

.hero-photo {
height: 76vh;
overflow: hidden;
}

.hero-photo img {
height: 100%;
object-fit: cover;
}

/* INTRO */

.intro {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 6vw;
border-top: 1px solid var(--line);
}

.intro-text {
max-width: 800px;
}

.intro-text h2 {
margin-bottom: 50px;
}

.intro-text p {
max-width: 650px;
font-size: 18px;
}

/* STATEMENT */

.statement {
padding: 130px 8vw;
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
text-align: center;
}

.statement p {
margin: 0;
color: var(--text);
font-family: "Cormorant Garamond", Georgia, serif;
font-size: clamp(42px, 6vw, 90px);
line-height: .98;
}

/* REGIONS */

.regions {
border-bottom: 1px solid var(--line);
}

.section-heading {
max-width: 900px;
margin: 50px 0 80px 25%;
}

.region-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
}

.region-card {
display: block;
}

.region-image {
height: 600px;
overflow: hidden;
}

.region-image img {
height: 100%;
object-fit: cover;
transition: transform .8s ease;
}

.region-card:hover img {
transform: scale(1.035);
}

.region-meta {
margin-top: 22px;
color: var(--muted);
font-size: 10px;
letter-spacing: .2em;
}

.region-card h3 {
margin: 10px 0;
}

.region-card p {
max-width: 450px;
}

/* IMAGE BREAK */

.image-break {
position: relative;
height: 80vh;
overflow: hidden;
}

.image-break img {
height: 100%;
object-fit: cover;
filter: brightness(.72);
}

.image-break-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-family: "Cormorant Garamond", Georgia, serif;
font-size: clamp(60px, 10vw, 150px);
line-height: .75;
text-align: center;
letter-spacing: -.04em;
}

/* CLOSING */

.closing {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 6vw;
}

.closing h2 {
max-width: 850px;
}

.closing p {
max-width: 600px;
font-size: 18px;
}

/* PAGE HERO */

.page-hero {
min-height: 80vh;
border-bottom: 1px solid var(--line);
}

.page-hero h1 {
max-width: 1200px;
margin-bottom: 45px;
}

.page-hero > p {
max-width: 600px;
font-size: 19px;
}

/* HISTORY */

.history-intro {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 6vw;
}

.history-intro h2 {
max-width: 800px;
}

.history-intro p {
max-width: 700px;
font-size: 18px;
}

.timeline {
display: grid;
grid-template-columns: 1fr 3fr;
gap: 6vw;
border-top: 1px solid var(--line);
}

.timeline-list {
border-top: 0;
}

.timeline-item {
display: grid;
grid-template-columns: 80px 1fr;
gap: 35px;
padding: 50px 0;
border-bottom: 1px solid var(--line);
}

.timeline-year {
font-family: "Cormorant Garamond", serif;
font-size: 32px;
}

.timeline-date {
margin-bottom: 12px;
color: var(--muted);
font-size: 10px;
letter-spacing: .2em;
}

.timeline-item h3 {
margin-bottom: 15px;
}

.timeline-item p {
max-width: 650px;
}

.wide-photo {
height: 75vh;
overflow: hidden;
}

.wide-photo img {
height: 100%;
object-fit: cover;
}

/* REGION DETAIL */

.region-detail {
display: grid;
grid-template-columns: .5fr 1fr 1fr;
gap: 5vw;
border-top: 1px solid var(--line);
}

.region-detail-number {
font-family: "Cormorant Garamond", serif;
font-size: 70px;
}

.region-detail-content h2 {
margin-bottom: 35px;
}

.region-detail-content p {
max-width: 650px;
}

.large-text {
font-family: "Cormorant Garamond", serif;
color: var(--text);
font-size: 35px;
line-height: 1.1;
}

.region-detail-image {
height: 650px;
overflow: hidden;
}

.region-detail-image img {
height: 100%;
object-fit: cover;
}

.region-detail.reverse {
grid-template-columns: .5fr 1fr 1fr;
}

.stone-section {
min-height: 80vh;
padding: 120px 10vw;
background: var(--dark);
color: var(--white);
display: flex;
align-items: center;
}

.stone-content {
max-width: 800px;
}

.stone-section .eyebrow {
color: #aaa69b;
}

.stone-section h2 {
font-size: clamp(70px, 10vw, 150px);
}

.stone-section p {
max-width: 550px;
color: #bbb7ad;
font-size: 18px;
}

/* TASTING */

.tasting-intro {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 6vw;
border-top: 1px solid var(--line);
}

.tasting-intro h2 {
max-width: 800px;
}

.tasting-intro p {
max-width: 650px;
font-size: 18px;
}

.tasting-list {
padding-top: 0;
}

.tasting-item {
display: grid;
grid-template-columns: 180px 1fr;
gap: 50px;
padding: 70px 0;
border-top: 1px solid var(--line);
}

.tasting-number {
font-family: "Cormorant Garamond", serif;
font-size: 70px;
}

.tasting-item h2 {
margin-bottom: 25px;
}

.tasting-item p {
max-width: 650px;
font-size: 18px;
}

.tasting-image {
position: relative;
height: 80vh;
overflow: hidden;
}

.tasting-image img {
height: 100%;
object-fit: cover;
filter: brightness(.75);
}

.tasting-image-caption {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
color: white;
font-family: "Cormorant Garamond", serif;
font-size: clamp(40px, 7vw, 100px);
white-space: nowrap;
}

/* FOOTER */

.footer {
padding: 35px 5vw;
display: flex;
justify-content: space-between;
gap: 20px;
border-top: 1px solid var(--line);
color: var(--muted);
font-size: 9px;
letter-spacing: .18em;
text-transform: uppercase;
}

/* MOBILE */

@media (max-width: 850px) {

.header {
    align-items: flex-start;
    gap: 25px;
}

.nav {
    flex-direction: column;
    gap: 10px;
    text-align: right;
}

.hero,
.intro,
.closing,
.history-intro,
.timeline,
.region-detail,
.region-detail.reverse,
.tasting-intro {
    grid-template-columns: 1fr;
}

.hero {
    padding-top: 70px;
}

h1 {
    font-size: clamp(65px, 19vw, 110px);
}

h2 {
    font-size: clamp(50px, 15vw, 90px);
}

.hero-photo {
    height: 60vh;
}

.section {
    padding: 80px 6vw;
}

.section-heading {
    margin: 40px 0;
}

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

.region-image {
    height: 500px;
}

.image-break,
.wide-photo,
.tasting-image {
    height: 60vh;
}

.timeline {
    gap: 30px;
}

.timeline-item {
    grid-template-columns: 55px 1fr;
}

.region-detail-image {
    height: 500px;
}

.tasting-item {
    grid-template-columns: 70px 1fr;
    gap: 25px;
}

.tasting-number {
    font-size: 50px;
}

.tasting-image-caption {
    white-space: normal;
    text-align: center;
}

.footer {
    flex-direction: column;
}


}
